.antMatchers(HttpMethod.GET,"/**").permitAll()
.anyRequest().authenticated()
.and()
.addFilter(new JWTLoginFilter(authenticationManager()))
.addFilter(new JWTAuthenticationFilter(authenticationManager()));
仍然会经过JWTAuthenticationFilter,尽管结果实际上并不校验
这是什么原因???