Spring Boot Security wont ignore certain paths that dont need to be secured
问题 I've seen people post about this issue before. The problem is that I want everything in my /api/v1/auth/ controller to not go through the JWT filter chain. This is what my my security config looks like @Configuration @EnableWebSecurity class SecurityConfig() : WebSecurityConfigurerAdapter() { @Autowired lateinit var tokenService: TokenService override fun configure(web: WebSecurity) { web.ignoring().antMatchers( "/v2/api-docs", "/configuration/ui", "/swagger-resources/**", "/configuration