我的 Spring 应用程序中存在Access-Control-Allow-Origin这个众所周知的问题。我使用跨域请求从内置的MongoDB数据库 REST 接口中读取数据(例如: http:\localhost:28017\db_name\collection_name )。
我的 javascript 客户端(JSONP 不起作用:()与此网页上的这个非常相似:http: //2rdscreenretargeting.blogspot.com/2012/06/enable-cors-for-jersey.html。我也使用来自的 CORS 过滤器这个网站: http: //software.dzhuvinov.com/cors-filter.html。
我的 Spring 应用程序的每个响应在其标头中都有这个 Access-Control-Allow-Origin 属性,来自 mongodb 的响应除外。我还可以做些什么 ?