Chr*_*ong 7 spring cors angularjs
很抱歉发布这个相当大的帖子。但我看不出有办法让它变小。责备CORS :)
版本:
我想要达到的目标
使用基本授权标头的跨源请求:
问题:
问题:
Spring配置的web.xml中的CORS设置:
allowedOrigins: *
allowedMethods: GET,POST,DELETE,PUT,HEAD,OPTIONS
allowedHeaders: origin,content-type,accept,authorization,x-requested-with
supportsCredentials: true
Run Code Online (Sandbox Code Playgroud)
Angularjs http 请求(源自:localhost:8000):
$http.get('localhost:8080/api/user', {headers: {'Authorization':'Basic am9obkBqb2huLmNvbTpibGE='}})
.success(function(data, status, head, config) {
console.log("success");
console.log(status);
})
.error(function(data, status, head, config) {
console.log("error");
console.log(status);
});
Run Code Online (Sandbox Code Playgroud)
HTTPFox 请求标头(来自失败的 OPTIONS 请求):
(Request-Line) OPTIONS /api/user HTTP/1.1
Host localhost:8080
User-Agent Mozilla/5.0 (X11; Linux x86_64; rv:19.0) Gecko/20100101 Firefox/19.0
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language en-US,en;q=0.5
Accept-Encoding gzip, deflate DNT 1
Origin localhost:8000
Access-Control-Request-Method GET
Access-Control-Request-Headers authorization
Connection keep-alive
Run Code Online (Sandbox Code Playgroud)
HTTPFox 响应标头(来自失败的 OPTIONS 请求):
(Status-Line) HTTP/1.1 302 Found
Access-Control-Allow-Origin localhost:8000
Access-Control-Allow-Credentials true
Access-Control-Max-Age 1800
Access-Control-Allow-Methods GET,POST,DELETE,PUT,HEAD,OPTIONS
Access-Control-Allow-Headers origin, content-type, accept, authorization, x-requested-with
Location localhost:8080/login.jsp
Content-Length 0
Server Jetty(8.1.9.v20130131)
Run Code Online (Sandbox Code Playgroud)
春季调试日志:
[qtp1172726060-24 - /api/user] DEBUG org.eclipse.jetty.server.Server - REQUEST /api/user on AsyncHttpConnection@c114739,g=HttpGenerator{s=0,h=-1,b=-1,c=-1},p=HttpParser{s=-5,l=10,c=0},r=1
[qtp1172726060-24 - /api/user] DEBUG o.e.jetty.servlet.ServletHandler - chain=CORS->springSecurityFilterChain->spring
[qtp1172726060-24 - /api/user] DEBUG o.e.jetty.servlet.ServletHandler - call filter CORS
[qtp1172726060-24 - /api/user] DEBUG o.e.jetty.servlets.CrossOriginFilter - Cross-origin request to /api/user is a preflight cross-origin request
[qtp1172726060-24 - /api/user] DEBUG o.e.jetty.servlets.CrossOriginFilter - Access-Control-Request-Method is GET
[qtp1172726060-24 - /api/user] DEBUG o.e.jetty.servlets.CrossOriginFilter - Method GET is among allowed methods [GET, POST, DELETE, PUT, HEAD, OPTIONS]
[qtp1172726060-24 - /api/user] DEBUG o.e.jetty.servlets.CrossOriginFilter - Access-Control-Request-Headers is authorization
[qtp1172726060-24 - /api/user] DEBUG o.e.jetty.servlets.CrossOriginFilter - Headers [authorization] are among allowed headers [origin, content-type, accept, authorization, x-requested-with]
[qtp1172726060-24 - /api/user] DEBUG o.e.jetty.servlets.CrossOriginFilter - Preflight cross-origin request to /api/user forwarded to application
[qtp1172726060-24 - /api/user] DEBUG o.e.jetty.servlet.ServletHandler - call filter springSecurityFilterChain
[qtp1172726060-24 - /api/user] DEBUG org.eclipse.jetty.server.Server - RESPONSE /api/user 302 handled=true
[qtp1172726060-24] DEBUG o.e.jetty.server.AsyncHttpConnection - Enabled read interest SCEP@5deb702b{l(/127.0.0.1:41667)<->r(/127.0.0.1:8080),d=true,open=true,ishut=false,oshut=false,rb=false,wb=false,w=true,i=0r}-{AsyncHttpConnection@c114739,g=HttpGenerator{s=4,h=0,b=-1,c=-1},p=HttpParser{s=0,l=10,c=0},r=1}
Run Code Online (Sandbox Code Playgroud)
网页.xml:
<!-- CORS related filter (this comes before the security filter -->
<filter>
<filter-name>CORS</filter-name>
<filter-class>org.eclipse.jetty.servlets.CrossOriginFilter</filter-class>
<init-param>
<param-name>allowedOrigins</param-name>
<param-value>*</param-value>
</init-param>
<init-param>
<param-name>allowedMethods</param-name>
<param-value>GET,POST,DELETE,PUT,HEAD,OPTIONS</param-value>
</init-param>
<init-param>
<param-name>allowedHeaders</param-name>
<param-value>origin, content-type, accept, authorization, x-requested-with</param-value>
</init-param>
<init-param>
<param-name>supportsCredentials</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>CORS</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- Security related filter -->
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
Run Code Online (Sandbox Code Playgroud)
小智 1
我们在生产中使用 CORS,但它只能在兼容 HTML5 的浏览器上运行,而且我们也遇到了同样的问题。
我们的客户端和您的客户端之间的唯一区别是您没有将 withCredentials 传递给 get 方法。
像这样:
$http.get(url, { withCredentials : true })
Run Code Online (Sandbox Code Playgroud)
您还可以设置为默认值:
config(['$httpProvider', function($httpProvider) {
$httpProvider.defaults.withCredentials = true;
}]);
Run Code Online (Sandbox Code Playgroud)
如果这两种方法都不起作用,请尝试将您的 CORS servlet 更改为此。
归档时间: |
|
查看次数: |
5490 次 |
最近记录: |