Spring Boot Security Hell
Currently I am building some web app. The problem is that I have a login method dedicated for anyone to use:
As it can be seen I've directly told it to throw FAILED_DEPENDENCY (just as a test), because my security config:
always makes it return 403 when an exception occurred. No matter what exception is thrown, it answers with a 403 when using the endpoint "/api/v1/user/login". When no error is thrown it works, so I don't know what is going on...
As it can be seen I've directly told it to throw FAILED_DEPENDENCY (just as a test), because my security config:
always makes it return 403 when an exception occurred. No matter what exception is thrown, it answers with a 403 when using the endpoint "/api/v1/user/login". When no error is thrown it works, so I don't know what is going on...