In Spring Boot 3.0.2, dispatcherServlet
is not working when combined with filterChain
function
#34164
Labels
for: external-project
For an external project and not something we can fix
status: invalid
An issue that we don't feel is valid
I'm using
spring-security
in my project. After upgrading to Spring Boot 3.0.2, thedispatcherServlet
seems not working.I've composed a simple project here.
In the
main
branch, the project is backed by Spring Boot 2.7.8 and it's workingcurl localhost:8080
in the terminal and it returnsNo secrets here!
.In the
spring-boot3
branch, the project is backed by Spring Boot 3.0.0 and it's not workingcurl localhost:8080
in the terminal and nothing returns.Note that apart from the dependency change, I only changed
antMatchers
torequestMatchers
in here.Additional reference on the
spring-security
'sfilterChain
function.The text was updated successfully, but these errors were encountered: