Class DefaultRequestRejectedHandler
java.lang.Object
org.springframework.security.web.firewall.DefaultRequestRejectedHandler
- All Implemented Interfaces:
- RequestRejectedHandler
Default implementation of 
RequestRejectedHandler that simply rethrows the
 exception.- Since:
- 5.4
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidhandle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, RequestRejectedException requestRejectedException) Handles an request rejected failure.
- 
Constructor Details- 
DefaultRequestRejectedHandlerpublic DefaultRequestRejectedHandler()
 
- 
- 
Method Details- 
handlepublic void handle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, RequestRejectedException requestRejectedException) throws IOException, jakarta.servlet.ServletException Description copied from interface:RequestRejectedHandlerHandles an request rejected failure.- Specified by:
- handlein interface- RequestRejectedHandler
- Parameters:
- request- that resulted in an- RequestRejectedException
- response- so that the user agent can be advised of the failure
- requestRejectedException- that caused the invocation
- Throws:
- IOException- in the event of an IOException
- jakarta.servlet.ServletException- in the event of a ServletException
 
 
-