Spring Boot (3.2.3) Security Module (6.2.2) Chain Issue
I have the following two Beans
Springboot customizing login page breaks logout
When I try to use a custom login page in my Springboot application the /logout page breaks.
Why When Disabling POST Requests Authentication it also disables the GET Request authentication
I am creating a springboot gateway integrated with spring security, eureka and oauth2 Client
The gateway is acting as an oauth2 client for the GET Requests hence all the GET Requests needs to be authenicated
But all the posts requests need not be authenticated as they have bearer token attach with them they can pass through the gateway and can be authenticated at the microservice itself
Problem is When I am permiting all the POST requests it also disables the GET request authentication
When I try to access /users as an admin, it doesn’t display correctly
I don’t understand why a user that I set as admin in the database can’t access the /users page?
link github https://github.com/SlavicAntoci/Teza