国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

js 跨域請求外部服務(wù)器的資源

2019-11-09 18:43:32
字體:
供稿:網(wǎng)友

tomcat服務(wù)器提供的接口,不能在其他域中訪問的時候,需要增 access-Control-Allow-Origin:* 

以下操作均在需要被訪問的項目中設(shè)置

1、編寫攔截器代碼

package com.soft.filter;/** * Created by Administrator on 2017/2/6. */import javax.servlet.*;import javax.servlet.http.HttpServletResponse;import java.io.IOException;public class CORSFilter implements Filter {    @Override    public void init(FilterConfig filterConfig) throws ServletException {    }    @Override    public void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {        HttpServletResponse httPResponse = (HttpServletResponse) servletResponse;        httpResponse.addHeader("Access-Control-Allow-Origin", "*");        filterChain.doFilter(servletRequest, servletResponse);    }    @Override    public void destroy() {    }}

2、配置web.xml

<filter>   <filter-name>CorsFilter</filter-name>   <filter-class>com.soft.filter.CORSFilter</filter-class></filter><filter-mapping>   <filter-name>CorsFilter</filter-name>   <url-pattern>/*</url-pattern></filter-mapping>文章轉(zhuǎn)載于 http://www.cnblogs.com/joshualzb/p/5528205.html


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 深圳市| 滨海县| 平陆县| 乌海市| 河间市| 休宁县| 大同县| 镇巴县| 巩留县| 大余县| 威海市| 类乌齐县| 寿宁县| 都匀市| 镇原县| 桦甸市| 普陀区| 曲沃县| 威宁| 聊城市| 永平县| 望奎县| 资阳市| 商都县| 新建县| 南部县| 思茅市| 修武县| 山东| 新宁县| 舟曲县| 佳木斯市| 衡阳市| 平顺县| 襄樊市| 正镶白旗| 安阳县| 合水县| 山阴县| 南部县| 和硕县|