Tomcat的webservice接口访问跨域
Posted mys-ql
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tomcat的webservice接口访问跨域相关的知识,希望对你有一定的参考价值。
tomcat7发布的webservice接口在被用户跨域访问的时候报错
(No ‘Access-Control-Allow-Origin‘ header is present on the requested resource. Origin ‘https://xcx1.winhui.net‘ is therefore not allowed access.)
解决办法
1、下载cors-filter-<version>.jar和java-property-utils-<version>.jar两个jar文件,并将其放在web服务器的classpath路径下,例如tomcat的lib。
cors-filter-2.4.jar java-property-utils-1.9.1.jar 包我这里就不提供了
2、在web.xml中添加CorsFilter过滤器
<filter> <filter-name>CorsFilter</filter-name> <filter-class>com.thetransactioncompany.cors.CORSFilter</filter-class> </filter>
<filter-mapping> <filter-name>CorsFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
3、然后重启tomcat就好了
备份一下,同时也给更多的水友多一条解决此问题的路径
以上是关于Tomcat的webservice接口访问跨域的主要内容,如果未能解决你的问题,请参考以下文章
一个webservices项目能在Tomcat上部署成功 也能访问接口 现在在weblogic上部署 就报错了 就在本地测试用