已拦截跨源请求:同源策略禁止读取位于 http://192.:x/xx/的远程资源。(原因:CORS 头缺少 ‘Access-Control-Allow-Origin‘)

时间:2025-01-21 10:33:00

问题记录解决:

部署jar和war到服务器后,使用浏览器获取接口时报错。
报错:
火狐:

已拦截跨源请求:同源策略禁止读取位于 http://192.:x/xxx 的远程资源。(原因:CORS 头缺少
‘Access-Control-Allow-Origin’)。

谷歌:

Access to XMLHttpRequest at ‘http://192..:xxx’ from origin
‘http://localhost:8013’ has been blocked by CORS policy: Response to
preflight request doesn’t pass access control check: No
‘Access-Control-Allow-Origin’ header is present on the requested
resource.

分析是服务器防火墙问题。

解决:

源地址: /qq_26563299/article/details/79031685

查看所有打开的端口:
firewall-cmd --zone=public --list-ports

开启端口:
firewall-cmd --zone=public --add-port=80/tcp --permanent
(–permanent永久生效,没有此参数重启后失效)

重新载入
firewall-cmd --reload

查看
firewall-cmd --zone= public --query-port=80/tcp

删除
firewall-cmd --zone= public --remove-port=80/tcp --permanent