我正在努力解决交叉起源的问题。当我使用Maven时,我将java-property-utils-1.9和cors-filter-1.9.2添加到pom.xml中。然后我像这样配置了我的web.xml
<filter>
<filter-name>CORS</filter-name>
<filter-class>com.thetransactioncompany.cors.CORSFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>CORS</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
我在其他stackoverflow对话中发现它与eclipse和tomcat完美配合。但是现在,我正在使用Spring Tool Suite,我不知道它出了什么问题!我错过了一些进一步的配置?如果您有任何建议,请帮助我。