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