Class HttpStatusRequestRejectedHandler
java.lang.Object
org.springframework.security.web.firewall.HttpStatusRequestRejectedHandler
- All Implemented Interfaces:
 RequestRejectedHandler
A simple implementation of 
RequestRejectedHandler that sends an error with
 configurable status code.- Since:
 - 5.4
 
- 
Constructor Summary
ConstructorsConstructorDescriptionConstructs an instance which uses400as response code.HttpStatusRequestRejectedHandler(int httpError) Constructs an instance which uses a configurable http code as response. - 
Method Summary
Modifier and TypeMethodDescriptionvoidhandle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, RequestRejectedException requestRejectedException) Handles an request rejected failure. 
- 
Constructor Details
- 
HttpStatusRequestRejectedHandler
public HttpStatusRequestRejectedHandler()Constructs an instance which uses400as response code. - 
HttpStatusRequestRejectedHandler
public HttpStatusRequestRejectedHandler(int httpError) Constructs an instance which uses a configurable http code as response.- Parameters:
 httpError- http status code to use
 
 - 
 - 
Method Details
- 
handle
public void handle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, RequestRejectedException requestRejectedException) throws IOException Description copied from interface:RequestRejectedHandlerHandles an request rejected failure.- Specified by:
 handlein interfaceRequestRejectedHandler- Parameters:
 request- that resulted in anRequestRejectedExceptionresponse- so that the user agent can be advised of the failurerequestRejectedException- that caused the invocation- Throws:
 IOException- in the event of an IOException
 
 -