spring-boot-webflux-jjwt icon indicating copy to clipboard operation
spring-boot-webflux-jjwt copied to clipboard

Example Spring Boot and WebFlux (Reactive Web) with Spring Security and JWT for token Authentication and Authorization

Results 4 spring-boot-webflux-jjwt issues
Sort by recently updated
recently updated
newest added

In AuthenticationRest.java, the password checking should be "passwordEncoder.matches(requestPassword, userDetails.getPassword())", because "encode()" produces different hashes for same input, so equals won't work

Scenario: when JWT token expired, and I am trying to access an API using the expired token, it's not handling properly, it's giving "ExpiredJwtException" exception in console, but in API...

hello! can you publish security configuration to central maven? me need for project :)

Hello! First, thank you very much for that medium article, it really helped me understanding the security and webflux parts. I figured to do some jUnit tests to both, automate...