Explanation | A tag library URI that is defined as a JAR location (web.xml file or page directive) cannot be located. |
Action | Verify that the JAR file exists and is accessible to this Web module. |
Explanation | The JSP container is unable to load the TagExtraInfo class that is specified in the tag library descriptor (TLD). |
Action | Verify that the TagExtraInfo class exists and is accessible to this Web module. |
Explanation | The JSP container is unable to load the TagLibraryValidator class that is specified in the tag library descriptor (TLD). |
Action | Verify that the TagLibraryValidator class exists and is accessible to this Web module. |
Explanation | Explanation |
Action | User Action |
Explanation | Explanation |
Action | User Action |
Explanation | <jsp:output> contains multiple occurrences of the attribute and they have different values. |
Action | Be sure multiple occurrences of the attribute have the same value. |
Explanation | The taglibrary prefix was already defined with a different URI. |
Action | Make sure the prefix is defined with only one URI. |
Explanation | The taglibrary prefix was used before the tag directive that defines the prefix. |
Action | Move the tag directive above all actions that use the prefix. |
Explanation | The JSP container handles the initializing and releasing of PageContext objects. |
Action | According to the specification, verify that there are no applications using JspFactory objects. |
Explanation | The dynamic attribute prefix does not map to a namespace. |
Action | Make sure the prefix maps to an existing namespace. |
Explanation | Unable to get a RequestDispatcher for the requested context. |
Action | Verify tag values are correct and verify that the requested context exists. |
Explanation | The attribute passed to a deferred method returning void can not be a string literal. |
Action | Modify the value passed in for the attribute. |
Explanation | There was a problem loading the JSP class. The JSP Container will attempt to load the class file with the org.apache.jsp package name instead. |
Action | If the problem persists, restart the application. |
Explanation | A problem occurred when parsing the JSP Tag Library Descriptor file. This error can be caused by a malformed XML file. |
Action | Check the JSP Tag Library Descriptor file for malformed XML. If the problem persists after correcting the malformed XML file, restart the application. |
Explanation | The JSP container was unable to find the system compiler, which usually indicates that the Java SDK jar file, tools.jar, was not found in the class path. |
Action | Ensure that the Java SDK jar file, tools.jar, is in the class path and verify that the Java SDK supports the Java Compiler API. See Java Specification Request 199 for more information. |
Explanation | A request was made to compile jsps at a level not supported. |
Action | Either install JDK 7 or change the jdkSourceLevel to 16. |
Explanation | There was a problem parsing the java.version property. |
Action | Verify the java version is valid. |