springboot解决跨域访问
Posted lazyli
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot解决跨域访问相关的知识,希望对你有一定的参考价值。
/**
* 跨域设置
* @Version 1.0.0
* @Description
*/
@Configuration
public class CorsConfig extends WebMvcConfigurationSupport {
@Override
protected void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("*")
.allowCredentials(true)
.allowedMethods("GET","POST","DELETE","PUT")
.maxAge(3600);
}
}
以上是关于springboot解决跨域访问的主要内容,如果未能解决你的问题,请参考以下文章