首先下载cors-filter-2.5.jar和java-property-utils-1.9.1
1、把这两个jar包放在tomcat的lib下。
2、在conf文件夹下找到web.xml。
3、在web.xml中添加如下代码:
CORS
com.thetransactioncompany.cors.CORSFilter
cors.allowOrigin
*
cors.supportedMethods
GET, POST, HEAD, PUT, DELETE
cors.supportedHeaders
Accept, Origin, X-Requested-With, Content-Type, Last-Modified
cors.exposedHeaders
Set-Cookie
cors.supportsCredentials
true
CORS
/*
1