CORS -Spring Boot 3更新

kx7yvsdv  于 2024-01-05  发布在  Spring
关注(0)|答案(1)|浏览(186)

我将Vaadin应用程序更新到Sping Boot 3,现在我在启动时收到以下警告

  1. Cache miss for REQUEST dispatch to '/ui/login' (previous null). Performing CorsConfiguration lookup. This is logged once only at WARN level, and every time at TRACE.

字符串
通过添加以下Bean,错误消失:

  1. @Bean
  2. public CorsConfigurationSource corsConfigurationSource() {
  3. CorsConfiguration configuration = new CorsConfiguration();
  4. configuration.setAllowedOrigins(Arrays.asList("https://test.com"));
  5. configuration.setAllowedMethods(Arrays.asList("*"));
  6. UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
  7. source.registerCorsConfiguration("/**", configuration);
  8. return source;
  9. }


这个Bean的消息是不正确的,但是我不确定它是否正确。我读了很多关于CORS的文章,但是不太了解它的细节。也许有人可以帮助我或者告诉我如何正确处理它。
这是我的WebSecurityConfig:

  1. @Configuration
  2. @EnableWebSecurity
  3. public class TestWebSecurityConfig {
  4. @Bean
  5. public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {
  6. http.authorizeHttpRequests((requests) -> {
  7. requests.requestMatchers(AntPathRequestMatcher.antMatcher(MAPPING + "**")).hasAuthority("abc");
  8. requests.anyRequest().permitAll();
  9. });
  10. http.httpBasic(Customizer.withDefaults());
  11. http.csrf((customizer) -> customizer.disable());
  12. http.headers((customizer) -> customizer.disable());
  13. return http.build();
  14. }
  15. @Autowired
  16. public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
  17. auth.inMemoryAuthentication()
  18. .withUser("xyz")
  19. .password("xyz")
  20. .authorities("abc");
  21. }
  22. }


先谢谢你了!

643ylb08

643ylb081#

这是自Sping Boot 3.2.0以来的已知行为,因为Spring Framework更改描述了here。该修复已经在Spring Security中包含implement,并将在今年12月晚些时候包含在Sping Boot 3.2.1中。

相关问题