Issue #10207 Update missing JSP message. (#10320)

* Issue #10207 Update missing JSP message.
This commit is contained in:
Jan Bartel 2023-08-18 03:19:06 +02:00 committed by GitHub
parent 33ef0b040a
commit 5160ad29ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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");

View File

@ -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");