JSP Error 500

JSP Error 500 is to generate error status 500 in jsp. The Error 500
occurred when the server encounter an internal error that prevent it from
fulfilling the request.
Understand with Example
In this section, you will learn how to generate error status 500 in jsp. You
can see in the given example that we create a scriptlet that include sendError() method of the
interface HttpServletResponse which sends an error response to the client
using the specified status code and descriptive message. You can either use response.SC_INTERNAL_SERVER_ERROR
in place of status code 500.
Here is the code of error500.jsp
<html>
<head>
<title>Generate Error</title>
</head>
<%
response.sendError(500, "Generate Error");
%>
</html> |
Output will be displayed as:

Download Source Code:

|