1. 第一种import org.springframework.context.annotation.Configuration;import org.springframework.web.servlet.config.annotation.CorsRegistry;import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;/** * @authorMcally * @time* @des跨越解决方式 */@Configurationpublic class CorsConfig implements WebMvcConfigurer {@Overridepublic void addCorsMAppings(CorsRegistry registry) {registry.addMapping("/**").allowedOrigins("*").allowedMethods("GET", "HEAD", "POST", "PUT", "DELETE", "OPTIONS").allowCredentials(true).maxAge(3600).allowedHeaders("*");}}
【玩转SpringBoot 跨域问题的 3 种方案】
推荐阅读
- SpringBoot内置Tomcat启动原理源码分析
- 国外服务器部署springboot 项目 出现时区问题
- 玩转 IDEA 花式打断点,从此告别 996
- 效率这不就提上来了嘛!SpringBoot+flowable快速实现工作流
- SpringBoot 如何使用同步锁
- 一文看穿跨域BGP/MPLS IP VPN三方案
- Springboot使用OkHttp实现微信支付API-V3签名、证书的管理和使用
- 开源的springboot+thymeleaf后台架构,程序员用了都点赞
- 10分钟学会用Python轻松玩转Excel
- 如何定义SpringBoot项目配置文件中密码的加密