我目前正在使用 Spring boot 更新版本 3.2.0 并在运行应用程序后实现了SecurityFilterChain我收到此消息:
2023-12-11T12:08:04.541+06:00 WARN 28000 --- [nio-8080-exec-1] o.s.w.s.h.HandlerMappingIntrospector : Cache miss for REQUEST dispatch to '/' (previous null). Performing CorsConfiguration lookup. This is logged once only at WARN level, and every time at TRACE.
2023-12-11T12:08:04.550+06:00 WARN 28000 --- [nio-8080-exec-1] o.s.w.s.h.HandlerMappingIntrospector : Cache miss for REQUEST dispatch to '/' (previous null). Performing MatchableHandlerMapping lookup. This is logged once only at WARN level, and every time at TRACE.
Run Code Online (Sandbox Code Playgroud)
SecurityFilterChain的代码:
@Bean
public SecurityFilterChain securityFilterChain(HttpSecurity http) throws Exception …Run Code Online (Sandbox Code Playgroud) 我怎样才能从项目中解决这个问题?我应该停止使用 H2 数据库吗?
我还发现com.h2database:h2没有任何固定版本。
CVE-2022-45868 7.8 Cleartext Storage of Sensitive Information vulnerability pending CVSS allocation
Run Code Online (Sandbox Code Playgroud)