前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到教程。

PS:如果遇到 这个问题 Request header field Content-Type is not allowed by Access-Control-Allow-Headers,解决方法见另一博文:解决:Request header field Content-Type is not allowed by Access-Control-Allow-Headers

1. 场景描述:

我前端是一个 vue 工程,写的是绝对 URL 请求后端工程接口,报错如题:

No 'Access-Control-Allow-Origin' header is present on the requested resource

2.解决方法,后端开放跨域:新增一个过滤器,设置头信息。

重点是这个设置:

response.setHeader("Access-Control-Allow-Origin", "*");
package gentle.filter;import javax.servlet.*;
import javax.servlet.annotation.WebFilter;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;/*** 解决跨域设置* (可把此设置放在 nginx 中,但只能设置一处)** @author silence* @date 2018/12/11 15:19*/@WebFilter(filterName = "requestFilter", urlPatterns = {"/*"})
public class RequestFilter implements Filter {@Overridepublic void init(FilterConfig filterConfig) throws ServletException {}@Overridepublic void doFilter(ServletRequest servletRequest, ServletResponse servletResponse, FilterChain filterChain) throws IOException, ServletException {HttpServletResponse response = (HttpServletResponse) servletResponse;HttpServletRequest request = (HttpServletRequest) servletRequest;// 此处 setHeader、addHeader 方法都可用。但 addHeader时写多个会报错:“...,but only one is allowed”response.setHeader("Access-Control-Allow-Origin", "*");
//        response.addHeader("Access-Control-Allow-Origin", request.getHeader("origin"));// 解决预请求(发送2次请求),此问题也可在 nginx 中作相似设置解决。response.setHeader("Access-Control-Allow-Headers", "x-requested-with,Cache-Control,Pragma,Content-Type,Token, Content-Type");response.setHeader("Access-Control-Allow-Methods", "POST, GET, OPTIONS, DELETE");response.setHeader("Access-Control-Max-Age", "3600");response.setHeader("Access-Control-Allow-Credentials", "true");String method = request.getMethod();if (method.equalsIgnoreCase("OPTIONS")) {servletResponse.getOutputStream().write("Success".getBytes("utf-8"));} else {filterChain.doFilter(servletRequest, servletResponse);}}@Overridepublic void destroy() {}}

再次请求,可以了。

3. 前后端工程也有作反向代理。前端工程部署时使用浏览器默认端口:80 。后端工程端口为 8089 。nginx 监听端口 8082 。

前端请求后端 URL 为:http://  nginx所在服务器 IP : 8082

前端工程请求 8082,nginx 收到请求再转发到实际服务,取得数据,并最终再返回。

(nginx 所在服务器也就是代理服务器,可以和后端服务器为同一主机)

在 nginx 配置文件中设置为:

端口占用情况如下:红框是 nginx 、黄框是前端工程、蓝框是后端工程。

PS: springboot 项目中过滤器使用方法见文章:Springboot 项目中过滤器的使用

---------------------------------------------------------------------

后记 :解决报错见文章 :springboot&ajax&has been blocked by CORS policy: No 'Access-Control-Allow-Origin

另报错:The 'Access-Control-Allow-Origin' header contains multiple values'x, *', but only one is allowed.的解决方式见文章:

解决:The 'Access-Control-Allow-Origin' header contains multiple values'x, *', but only one is allowed.

---------------------------------------------------------------------

补记:

2019.5.16

作了以上配置后出现情况:跨域问题时好时不好,最后在 nginx 代理中加了一个假性集群配置:

这样,请求后端成功。访问正常。此处的 ergouzi 只是 upstream 的名字。

事实上后端工程项目只部署在 8089 上,其实 8082 上什么也没有。

---------------------------------------------------------------------

补记:

2019.6.5

其实不用配置假性集群,之所以会出现上面时好时不好情况的原因仅是由于我队友当时的操作:

他也用我服务器,那段时间有时会重启他应用的服务,而当他重启之前会执行命令:

ps -ef | grep java | awk '{print $2}' | xargs kill -9

查出当前运行的所有java程序再一并 kill ,

这样我的服务也挂了,而我只注意到前端工程请求失败,并未去查看后端工程服务是否正常。

好吧 ,这个我也应该检讨自己太粗心 ...

参考:https://blog.csdn.net/qq_39403545/article/details/82116121

解决跨域问题:No ‘Access-Control-Allow-Origin‘ header is present on the requested resource.相关推荐

  1. 解决springboot跨域问题No ‘Access-Control-Allow-Origin’ header is present on the requested resource.

    文章目录 1.问题描述 2.问题产生 3.解决方案 1. 在WebMvcConfig添加(推荐使用) 2.直接采用SpringBoot的注解@CrossOrigin 1.Controller层在需要跨 ...

  2. Vue--使用webpack解决跨域问题:No ‘Access-Control-Allow-Origin‘ header is present on the requested resource

    原文网址:Vue--使用webpack解决跨域问题:No 'Access-Control-Allow-Origin' header is present on the requested resour ...

  3. js跨域访问,No 'Access-Control-Allow-Origin' header is present on the requested resource

    js跨域访问提示错误:XMLHttpRequest cannot load http://...... No 'Access-Control-Allow-Origin' header is prese ...

  4. 新版本Chrome同源策略、跨域问题处理No ‘Access-Control-Allow-Origin‘ header is present on the requested resource.

    本文的方法实用于本地调试浏览器的设置,如果想要彻底解决需要使用 CORS(跨域资源共享) [ 相关文章 ] Python 使用 CORS 跨域资源共享解决 flask 服务器跨域问题.浏览器同源策略 ...

  5. Vue 跨域请求报错No ‘Access-Control-Allow-Origin‘ header is present on the requested resource.

    坑是一个一个踩出来的... 报错如下: Access to XMLHttpRequest at 'http://apps.eshimin.com/traffic/gjc/getArriveBase?n ...

  6. 报错:跨域问题解决 No ‘Access-Control-Allow-Origin‘ header is present on the requested resource.

    报错: Access to XMLHttpRequest at 'http://127.0.0.1:8088/user/list' from origin 'http://localhost:8080 ...

  7. 解决xxx by CORS policy: No ‘Access-Control-Allow-Origin‘ header is present on the requested resource问题

    文章目录 问题复现 跨域现象 什么是跨域 为什么要跨域 同源策略 什么是同源策略 为何存在同源策略 解决跨域问题 其他解决跨域问题的方案 JSONP CORS 跨域资源共享 前端设置 服务器设置 反向 ...

  8. header is present on the requested resource. Origin 'null' is therefore not allowed access.

    No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is there ...

  9. No ‘Access-Control-Allow-Origin‘ header is present on the requested resource Vue配置代理解决跨域问题

    前言 在进行web开发进行数据请求的时候常常会遇到跨域问题导致无法请求数据. 如果采用如下方法向http://localhost:4000服务器发送getStudents进行接口数据请求,在后端没有处 ...

最新文章

  1. 马尔科夫链蒙特卡洛算法(python)
  2. dpkg安装软件流程_ubuntu安装搜狗输入法linux版
  3. java filehelper_Spring 发送邮件 使用File指定附件
  4. 爬取微博好友所发微博制作词云
  5. 机器学习--CART分类回归树
  6. python云盘服务_Python无所不能?五分钟教会你用python打造个人云盘!
  7. VTK:图表之MinimumSpanningTree
  8. 玩转keybd_event
  9. jquery1.9+获取append后的动态元素
  10. 蓝桥杯 ALGO-63 算法训练 乘法表
  11. springboot中解决servlet乱码问题,使用配置类注册过滤器解决
  12. mysql中FIND_IN_SET函数用法
  13. 17家IT创业公司的血泪史(3)
  14. CD系列芯片功能大全
  15. 危害人类健康的饮食“凶徒” 都是人造的
  16. java 创建string对象机制 字符串缓冲池 字符串拼接机制
  17. 肿瘤靶向性红细胞膜包裹叶酸修饰的PLGA纳米粒|巨噬细胞膜包裹的PEG-PLGA载雷公藤红素纳米粒
  18. 基于UML的需求分析和系统设计(完整案例和UML图形演示)
  19. 成了!刚刚登顶全球首富的他,花440亿美元将推特买下 | 美通社头条
  20. 数据结构实践——猴子选大王

热门文章

  1. number 限制最长数字_Java源码阅读-Number
  2. Selenium 显式等待条件及其含义
  3. springCloud五大组件--Eureka
  4. Mybatis-plus详解
  5. MD5加密方式-工具类
  6. C 的Pair用法分类整理(精)
  7. 百度顶会论文复现(1):课程概述
  8. Apollo进阶课程 ⑧ | 高精地图的格式规范
  9. Apollo自动驾驶入门课程第④讲 — 感知(上)
  10. linux socket ip层配置,Linux下Socket通信(TCP实现)