带有spring security 6的spring Boot 3中的h2数据库问题[重复]

2j4z5cfb  于 2024-01-06  发布在  Spring
关注(0)|答案(1)|浏览(221)

此问题在此处已有答案

Spring + H2DB-Web-Console: "This method cannot decide whether these patterns are Spring MVC patterns or not."(3个答案)
2天前关闭。
我收到错误:这是因为在servlet上下文中有多个可Map的servlet:{org.h2.server.web.JakartaWebServlet=[/h2-console/*]
尝试了所有的方法,它不工作,目前有这样的

  1. @Bean
  2. public WebSecurityCustomizer webSecurityCustomizer() {
  3. return (web) -> web.ignoring().requestMatchers(new AntPathRequestMatcher("/h2-console/**"));
  4. }
  5. @Bean
  6. @DependsOn("webSecurityCustomizer")
  7. public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
  8. http.csrf().disable()
  9. .authorizeHttpRequests((requests) -> requests
  10. .requestMatchers("/", "/login").permitAll()
  11. .requestMatchers("/students", "/students/**").hasRole("ADMIN")
  12. .anyRequest().authenticated()
  13. )
  14. .formLogin()
  15. .failureUrl("/login?error=BadCredentials")
  16. .defaultSuccessUrl("/students", true)
  17. .and()
  18. .logout()
  19. .logoutUrl("/logout")
  20. .clearAuthentication(true)
  21. .invalidateHttpSession(true)
  22. .deleteCookies("JSESSIONID")
  23. .logoutSuccessUrl("/")
  24. .and()
  25. .authenticationProvider(authenticationProvider());
  26. return http.build();
  27. }

字符串
我可以让它工作的唯一方法,如果我简单地把:http.authorizeHttpRequests().anyRequest().permitAll();

6bc51xsx

6bc51xsx1#

看起来你试图使用@DependsOn(“webSecurityCustomizer”)来确保webSecurityCustomizer bean在SecurityFilterChain之前初始化。ignoring()方法在WebSecurityCustomizer的上下文中不能直接在Web上使用,所以你无法让它运行。
相反,您可以在安全过滤器链中简单地定义.ignoring()上下文,我们在HttpSecurity示例上使用它,它看起来像这样。

  1. public SecurityFilterChain securityFilterChain(HttpSecurity http) throws
  2. Exception {
  3. http.csrf().disable().requestMatchers(new AntPathRequestMatcher("/h2-console/**")).ignoring()
  4. // rest of the logic
  5. }

字符串

相关问题