Springboot + Vue 前后端连接跨域问题
在Springboot后端解决跨域问题。首先在Springboot项目中创建一个类。在类中创建一个java文件。如图我的格式:在CrosConfig中添加如下代码:package com.example.springboot.config;import org.springframework.context.annotation.Configuration;import o...
·
在Springboot后端解决跨域问题。
- 首先在Springboot项目中创建一个类。在类中创建一个java文件。如图我的格式:
在CrosConfig中添加如下代码:
package com.example.springboot.config;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
@Configuration
public class CrosConfig implements WebMvcConfigurer {
//重写addCorsMappings的方法
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("*")
.allowedMethods("GET", "HEAD", "POST", "PUT", "DELETE")
.allowedHeaders("*")
.maxAge(3600)
.allowCredentials(true);
}
}
有问题 及时回复
更多推荐
已为社区贡献2条内容
所有评论(0)