Skip to content
Advertisement

Handle Security exceptions in Spring Boot Resource Server

How can I get my custom ResponseEntityExceptionHandler or OAuth2ExceptionRenderer to handle Exceptions raised by Spring security on a pure resource server?

We implemented a

JavaScript

so whenever there is an error on the resource server we want it to answer with

JavaScript

The resource server uses the application.properties setting:

JavaScript

to authenticate and authorize a request against our auth server.

However any spring security error will always bypass our exception handler at

JavaScript

and produce either

JavaScript

or

JavaScript

So how do I configure the security exception handling for a resource server? All I ever find are examples on how to customize the Auth Server by implementing a custom OAuth2ExceptionRenderer. But I can’t find where to wire this to the resource server’s security chain.

Our only configuration/setup is this:

JavaScript

Advertisement

Answer

As noted in previous comments the request is rejected by the security framework before it reaches the MVC layer so @ControllerAdvice is not an option here.

There are 3 interfaces in the Spring Security framework that may be of interest here:

  • org.springframework.security.web.authentication.AuthenticationSuccessHandler
  • org.springframework.security.web.authentication.AuthenticationFailureHandler
  • org.springframework.security.web.access.AccessDeniedHandler

You can create implementations of each of these Interfaces in order to customize the response sent for various events: successful login, failed login, attempt to access protected resource with insufficient permissions.

The following would return a JSON response on unsuccessful login attempt:

JavaScript

You also need to register your implementation(s) with the Security framework. In Java config this looks like the below:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement