How to exclude JwtTimestampValidator
from the spring security filter.
JwtTimestampValidator
is getting executed when we pass a JWT token to an open or unrestricted endpoint.
http.authorizeExchange()
.pathMatchers("/open/**").permitAll()
.anyExchange().authenticated()
.and().oauth2ResourceServer().jwt();