* Issue #10207 Update missing JSP message.
This commit is contained in:
parent
33ef0b040a
commit
5160ad29ef
|
@ -28,7 +28,7 @@ public class NoJspServlet extends HttpServlet
|
|||
protected void doGet(HttpServletRequest req, HttpServletResponse response) throws ServletException, IOException
|
||||
{
|
||||
if (!_warned)
|
||||
getServletContext().log("No JSP support. Check that JSP jars are in lib/jsp and that the JSP option has been specified to start.jar");
|
||||
getServletContext().log("No JSP support. Check that the ee10-jsp module is enabled, or otherwise ensure the jsp jars are on the server classpath.");
|
||||
_warned = true;
|
||||
|
||||
response.sendError(500, "JSP support not configured");
|
||||
|
|
|
@ -28,7 +28,7 @@ public class NoJspServlet extends HttpServlet
|
|||
protected void doGet(HttpServletRequest req, HttpServletResponse response) throws ServletException, IOException
|
||||
{
|
||||
if (!_warned)
|
||||
getServletContext().log("No JSP support. Check that JSP jars are in lib/jsp and that the JSP option has been specified to start.jar");
|
||||
getServletContext().log("No JSP support. Check that the ee9-jsp module is enabled, or otherwise ensure the jsp jars are on the server classpath.");
|
||||
_warned = true;
|
||||
|
||||
response.sendError(500, "JSP support not configured");
|
||||
|
|
Loading…
Reference in New Issue