Jetty - reload the tag file in the bank

I have my main web project and a shared project that stores my tag files. I am currently using a jetty in a destroyed structure and I am adding my shared project with my tag files and put in web-inf/lib

.

When I make changes to my tags file, I can fit in again web-inf/lib

, although the jetty is not working.

javax.servlet.ServletException: org.apache.jasper.JasperException: PWC6033: Unable to compile class for JSP

      

How can I configure the jetty so that I can reshape the tag files without restarting the server?

+1


source to share


1 answer


Possible Cause: Jetty cannot compile the JSP file because it runs under the JRE instead of the JDK. It needs access to the compiler (which is not part of the JRE only the JDK) to turn the JSP source into bytecode (with a Servlet step in between). In the meantime, there is no need to worry about it.



+1


source







All Articles