gpt4 book ai didi

java - CORS 不适用于不同的网址

转载 作者:行者123 更新时间:2023-11-28 22:42:28 25 4
gpt4 key购买 nike

我有一个带有 rest api 的小型 java 应用程序。它已部署并可通过类似 http://1.1.1.1:8080/rest 的 url 使用。我还在那里启用了 CORS 过滤器,它可以找到。

但我也想使用类似“http://myhost.com/”的 url 配置对我的 api 的访问。在这种情况下,CORS 过滤器停止工作。

有什么想法吗?


UPD1
可用标题:

    response.setHeader("Access-Control-Allow-Origin", "*");
response.setHeader("Access-Control-Allow-Methods", "POST, GET, PUT, DELETE");
response.setHeader("Access-Control-Max-Age", "3600");


UPD2
更新了“访问控制允许 header ”:

        response.setHeader("Access-Control-Allow-Headers",
"x-requested-with, " +
"Content-Type, " +
"Host, " +
"User-Agent, " +
"Accept, " +
"Accept-Language, " +
"Accept-Encoding, " +
"Referer, " +
"Origin, " +
"Connection, " +
"Cache-Control");

要求:

GET /list HTTP/1.1
Host: myhost.com
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:31.0) Gecko/20100101 Firefox/31.0
Accept: */*
Accept-Language: ru-RU,ru;q=0.8,en-US;q=0.5,en;q=0.3
Accept-Encoding: gzip, deflate
Referer: http://mysecondhost.com/test.html
Origin: http://mysecondhost.com
Connection: keep-alive
Cache-Control: max-age=0


UPD3
看起来我们有 nginx,具有以下 header 配置:

        add_header 'Access-Control-Allow-Methods' 'GET,POST,DELETE,OPTIONS';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Headers' 'WD-Since,WD-Start,WD-Direction,WD-Length,WD-Ids,Content-Type,WD-Client-Id';
add_header 'Access-Control-Expose-Headers' 'WD-Total-Length,WD-Phone-Modal,WD-Client-Id,WD-Udid,WD-Need-More';
proxy_cache off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:8080/rest/;


最佳答案

我花了很多时间阅读另一个 stackoverflow 和 serverfault 帖子...我找到了解决方案。

(对我而言)最有帮助的链接:link1 link2 link3 link4

解决方案非常简单:我从 nginx 配置中删除了“add_header”。之后,我只在 Web 应用程序中进行了 CORS 配置。

关于java - CORS 不适用于不同的网址,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25332844/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com