/**
* 解决跨域问题
*/
@SpringBootConfiguration
public class CorsConfiguration {
@Bean
public WebMvcConfigurer corsConfigurer() {
return new WebMvcConfigurer() {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowCredentials(false)
.allowedMethods("POST", "GET", "PUT", "OPTIONS", "DELETE")
.allowedOrigins("*");
}
};
}
}
相关文章
- 02-27后端解决跨域问题
- 02-27后端(springboot)解决跨域问题
- 02-27springboot cors解决跨域问题
- 02-27前后端分离项目本地测试跨域问题配置
- 02-27SpringBoot解决跨域问题的3种方案
- 02-27has been blocked by CORS policy: No ‘Access-Control-Allow-Origin‘ 前后端共同解决跨域问题
- 02-27Django+Vue后端解决跨域问题
- 02-27SpringBoot项目针对跨域问题的三种解决方案
- 02-27因使用fasthttp(golang)再次遇到跨域问题的解决过程纪录,方法适用于其它后端语言。
- 02-27SpringBoot解决cors跨域问题