SpringBoot 后端正确配置CORS
【摘要】 这个错误是由于后端没有正确配置CORS(跨源资源共享)。为了允许前端通过浏览器访问后端接口,需要在后端配置CORS。以下是如何在Spring Boot中配置CORS的方法。 在Spring Boot中配置CORS 方法1:全局配置在Spring Boot应用中,可以通过配置类全局配置CORS。创建一个新的配置类并添加CORS配置。import org.springframework.cont...
这个错误是由于后端没有正确配置CORS(跨源资源共享)。为了允许前端通过浏览器访问后端接口,需要在后端配置CORS。以下是如何在Spring Boot中配置CORS的方法。
在Spring Boot中配置CORS
方法1:全局配置
在Spring Boot应用中,可以通过配置类全局配置CORS。创建一个新的配置类并添加CORS配置。
import org.springframework.context.annotation.Bean;
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 CorsConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("http://localhost:8081")
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
.allowedHeaders("*")
.allowCredentials(true);
}
}
方法2:控制器级别配置
你也可以在具体的控制器方法上配置CORS。添加@CrossOrigin
注解到控制器或方法上。
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class AuthController {
@CrossOrigin(origins = "http://localhost:8081")
@PostMapping("/auth/register")
public ResponseEntity<?> register(@RequestBody UserEntity user) {
// 注册逻辑
return ResponseEntity.ok().body("注册成功");
}
}
完整示例
在Spring Boot应用中,可以同时使用全局和控制器级别的配置。下面是一个完整的示例,包括全局配置和控制器级别的配置。
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
import org.springframework.http.ResponseEntity;
@Configuration
public class CorsConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("http://localhost:8081")
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
.allowedHeaders("*")
.allowCredentials(true);
}
}
@RestController
public class AuthController {
@CrossOrigin(origins = "http://localhost:8081")
@PostMapping("/auth/register")
public ResponseEntity<?> register(@RequestBody UserEntity user) {
// 注册逻辑
return ResponseEntity.ok().body("注册成功");
}
}
确保前后端端口一致
确保前端代码中的端口与CORS配置中的端口一致。如果前端运行在不同的端口,更新allowedOrigins
中的端口号。
前端调用示例
前端代码保持不变,只要后端配置了CORS,前端请求就能成功。
methods: {
async register() {
this.$refs.registerFormRef.validate(async valid => {
if (!valid) return;
try {
const response = await this.$http.post('http://localhost:8789/auth/register', this.registerForm);
const res = response.data;
if (res.success) {
this.$message.success("注册成功!");
this.toggleForm(); // 切换回登录表单
} else {
this.$message.error("注册失败!");
}
} catch (error) {
this.$message.error("注册失败!");
}
});
}
}
确保this.$http
在你的Vue实例中配置正确,例如使用axios:
import axios from 'axios';
Vue.prototype.$http = axios;
通过这些步骤,可以解决CORS问题,使前端能够成功调用后端的注册接口。
【版权声明】本文为华为云社区用户原创内容,未经允许不得转载,如需转载请自行联系原作者进行授权。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)