spring 如何在Sping Boot 3.0+上解决CORS

xfyts7mz  于 2023-04-10  发布在  Spring
关注(0)|答案(1)|浏览(261)

Spring boot版本3.0.+Spring Security中,身份验证不起作用,并且所有POST请求都不起作用。
CORS策略已阻止从源“http://localhost:3000”访问位于“http://localhost:9090/api/rest/users/auth”的XMLHttpRequest:对印前检查请求的响应未通过访问控制检查:请求的资源上不存在“Access-Control-Allow-Origin”标头。
然而,GET请求工作,并没有给予这个错误。所有建议工作在3.0以下的Spring boot版本。类型https://reflectoring.io/spring-cors/不工作。我使用REST配置与JWT Token实现WebMvcConfigurer
我已经尝试在请求的前端和后端的响应端连接所有推荐的头,但没有任何帮助。显然,问题是在这些版本的非常小的。谁遇到过这个问题并解决了它,请回复。

  1. @Override
  2. protected void doFilterInternal(HttpServletRequest request,
  3. HttpServletResponse response,
  4. FilterChain filterChain) throws ServletException, IOException {
  5. response.setHeader("Access-Control-Allow-Origin", "*");
  6. response.setHeader("Access-Control-Allow-Methods", "POST, PUT, GET, OPTIONS, DELETE, PATCH");
  7. response.setHeader("Access-Control-Max-Age", "3600");
  8. response.setHeader("Access-Control-Allow-Headers",
  9. "Accept-Encoding, origin, content-type, accept, token, x-auth-token, Access-Control-Allow-Origin, " +
  10. "Access-Control-Allow-Methods, Access-Control-Max-Age, Access-Control-Allow-Headers, " +
  11. "Content-Language, Content-Length, Keep-Alive, Authorization");
  12. @RestController
  13. @RequestMapping("/users")
  14. @Slf4j
  15. @SecurityRequirement(name = "Bearer Authentication")
  16. @CrossOrigin(origins = "http://localhost:3000", allowedHeaders = "*")
  17. //localhost:9090/api/rest/users
  18. public class UserController extends GenericController<User, UserDTO>
  19. {
  20. private final CustomUserDetailsService customUserDetailsService;
  21. private final JWTTokenUtil jwtTokenUtil;
  22. private final UserService userService;
  23. public UserController(UserService userService,
  24. CustomUserDetailsService customUserDetailsService,
  25. JWTTokenUtil jwtTokenUtil) {
  26. super(userService);
  27. this.customUserDetailsService = customUserDetailsService;
  28. this.jwtTokenUtil = jwtTokenUtil;
  29. this.userService = userService;
  30. }
  31. @PostMapping("/auth")
  32. public ResponseEntity<?> auth(@RequestBody LoginDTO loginDTO) {
  33. Map<String, Object> response = new HashMap<>();
  34. log.info("LoginDTO: {}", loginDTO);
  35. UserDetails foundUser = customUserDetailsService.loadUserByUsername(loginDTO.getLogin());
  36. log.info("foundUser, {}", foundUser);
  37. if (!userService.checkPassword(loginDTO.getPassword(), foundUser)) {
  38. return ResponseEntity.status(HttpStatus.UNAUTHORIZED).body("Ошибка авторизации!\nНеверный пароль");
  39. }
  40. String token = jwtTokenUtil.generateToken(foundUser);
  41. response.put("token", token);
  42. response.put("username", foundUser.getUsername());
  43. response.put("authorities", foundUser.getAuthorities());
  44. return ResponseEntity.ok().body(response);
  45. }
  46. }
  47. @Configuration
  48. @EnableWebSecurity
  49. public class WebSecurityConfig {
  50. @Bean
  51. public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
  52. http
  53. // by default uses a Bean by the name of corsConfigurationSource
  54. .cors(withDefaults())
  55. ...
  56. return http.build();
  57. }
  58. @Bean
  59. CorsConfigurationSource corsConfigurationSource() {
  60. CorsConfiguration configuration = new CorsConfiguration();
  61. configuration.setAllowedOrigins(Arrays.asList("https://example.com"));
  62. configuration.setAllowedMethods(Arrays.asList("GET","POST"));
  63. UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
  64. source.registerCorsConfiguration("/**", configuration);
  65. return source;
  66. }
  67. }
  68. import {useAuthUserAppStore} from "@/store/app";
  69. import LoginDTO from "@/models/LoginDTO";
  70. class AuthService {
  71. login(loginDTOUser: LoginDTO) {
  72. const user = {
  73. login: loginDTOUser.login,
  74. password: loginDTOUser.password
  75. }
  76. const serializedUser = JSON.stringify(user);
  77. return http
  78. .post('/users/auth', serializedUser)
  79. .then(response => {
  80. if (response.data.accessToken) {
  81. useAuthUserAppStore().changeAuthUser(JSON.stringify(response.data))
  82. console.log(useAuthUserAppStore().authUser)
  83. }
  84. return response.data;
  85. });
  86. }
4zcjmb1e

4zcjmb1e1#

在类JWTSecurityConfig中,我删除了bean:

  1. @Bean
  2. public HttpFirewall httpFirewall() {
  3. StrictHttpFirewall firewall = new
  4. StrictHttpFirewall();
  5. firewall.setAllowUrlEncodedPercent(true);
  6. firewall.setAllowUrlEncodedSlash(true);
  7. firewall.setAllowSemicolon(true);
  8. firewall.setAllowedHttpMethods(Arrays.asList("GET", "POST", "PUT", "DELETE"));
  9. return firewall;
  10. }

相关问题