spring 执行MatchableHandlerMapping查找,它只在WARN级别记录一次,每次都在TRACE级别记录

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

请求调度到“/hello”的缓存未命中(以前为null)。正在执行MatchableHandlerMapping查找。它只在WARN级别记录一次,每次都在TRACE级别记录。

  1. package com.springsec.springsecurityclient.config;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.security.config.annotation.web.WebSecurityConfigurer;
  5. import org.springframework.security.config.annotation.web.builders.HttpSecurity;
  6. import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
  7. import org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer;
  8. import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
  9. import org.springframework.security.crypto.password.PasswordEncoder;
  10. import org.springframework.security.web.SecurityFilterChain;
  11. import org.springframework.web.cors.CorsConfiguration;
  12. import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
  13. import java.util.Arrays;
  14. import static org.springframework.transaction.TransactionDefinition.withDefaults;
  15. @Configuration
  16. @EnableWebSecurity
  17. public class WebSecurityConfig {
  18. private static final String[] WHITE_LIST_URLS = {
  19. "/hello",
  20. "/register"
  21. };
  22. @Bean
  23. public PasswordEncoder passwordEncoder() {
  24. return new BCryptPasswordEncoder(11);
  25. }
  26. @Bean
  27. public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
  28. http
  29. .cors()
  30. .and()
  31. .csrf()
  32. .disable()
  33. .authorizeRequests()
  34. .requestMatchers(WHITE_LIST_URLS).permitAll();
  35. return http.build();

字符串
I need to have the localhost like this (PS : DAILY CODE BUFFER YT SPRING BOOT INDEPTH COURSE TIMESTAMP = 41:00
I am getting as "ACCESS TO LOCALHOST DENIED"
我的Spring Boot 版本是3.2.0,所以我调整了所有的依赖版本下面或相同的这我的pom.xml文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.2.0</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.springsec</groupId>
  12. <artifactId>spring-security-client</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>spring-security-client</name>
  15. <description>Demo project for Spring security</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-data-jpa</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-security</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.mysql</groupId>
  34. <artifactId>mysql-connector-j</artifactId>
  35. <scope>runtime</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.projectlombok</groupId>
  39. <artifactId>lombok</artifactId>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-test</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.security</groupId>
  49. <artifactId>spring-security-test</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-oauth2-client</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework</groupId>
  58. <artifactId>spring-webflux</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.projectreactor.netty</groupId>
  62. <artifactId>reactor-netty</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>javax.xml.bind</groupId>
  66. <artifactId>jaxb-api</artifactId>
  67. <version>2.3.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>javax.xml.bind</groupId>
  71. <artifactId>jaxb-api</artifactId>
  72. <version>2.3.1</version>
  73. </dependency>
  74. <!-- https://mvnrepository.com/artifact/org.javassist/javassist -->
  75. <dependency>
  76. <groupId>org.javassist</groupId>
  77. <artifactId>javassist</artifactId>
  78. <version>3.20.0-GA</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.springframework.security</groupId>
  82. <artifactId>spring-security-config</artifactId>
  83. <version>3.2.0.RELEASE</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>javax.servlet</groupId>
  87. <artifactId>javax.servlet-api</artifactId>
  88. <version>3.1.0</version> <!-- You can adjust the version based on your requirements -->
  89. <scope>provided</scope>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. <configuration>
  98. <excludes>
  99. <exclude>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok</artifactId>
  102. </exclude>
  103. </excludes>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>


有人能帮我吗?

nzkunb0c

nzkunb0c1#

在我看来,你正在观看的教程已经过时了。在这里,你需要做更多的修改来获得项目的工作版本。
1.关于安全层,你必须读取/检查Migration GuideUse the Lambda DSL,然后它将有下一个WebSecurityConfig

  1. @Configuration
  2. @EnableWebSecurity
  3. public class WebSecurityConfig {
  4. private static final String[] WHITE_LIST_URLS = {
  5. "/hello",
  6. "/register"
  7. };
  8. @Bean
  9. public PasswordEncoder passwordEncoder() {
  10. return new BCryptPasswordEncoder(11);
  11. }
  12. @Bean
  13. public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception {
  14. http.cors(AbstractHttpConfigurer::disable);
  15. http.csrf(AbstractHttpConfigurer::disable);
  16. http.authorizeHttpRequests(request -> {
  17. request.requestMatchers(WHITE_LIST_URLS).permitAll();
  18. request.anyRequest().authenticated();
  19. });
  20. return http.build();
  21. }
  22. }

字符串
2.第二个是从项目中删除所有javax.x依赖项的导入,并将其替换为jakarta.x,因为从spring-boot3.x开始,所有javax导入都被jakarta.x替换。
3.关于pom.xml你必须改变它的东西一样下一个。dependencies部分:

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-data-jpa</artifactId>
  5. </dependency>
  6. <dependency>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-web</artifactId>
  9. </dependency>
  10. <dependency>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-security</artifactId>
  13. </dependency>
  14. <dependency>
  15. <groupId>com.mysql</groupId>
  16. <artifactId>mysql-connector-j</artifactId>
  17. <scope>runtime</scope>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.projectlombok</groupId>
  21. <artifactId>lombok</artifactId>
  22. <optional>true</optional>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-test</artifactId>
  27. <scope>test</scope>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.security</groupId>
  31. <artifactId>spring-security-test</artifactId>
  32. <scope>test</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-oauth2-client</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-webflux</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.projectreactor.netty</groupId>
  44. <artifactId>reactor-netty</artifactId>
  45. </dependency>
  46. <!-- https://mvnrepository.com/artifact/org.javassist/javassist -->
  47. <dependency>
  48. <groupId>org.javassist</groupId>
  49. <artifactId>javassist</artifactId>
  50. <version>3.20.0-GA</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.springframework.security</groupId>
  54. <artifactId>spring-security-config</artifactId>
  55. <version>3.2.0.RELEASE</version>
  56. </dependency>
  57. </dependencies>


我对未来的建议是:试着从文档中学习,这是理解框架如何工作的最好方法。

展开查看全部

相关问题