org.apache.jasper.JasperException: PWC6033: Error in Javac Compilation for JSP
记录一次 嵌入式Servlet容器 Jetty 升级过程中发生的问题公司老项目使用的是Jetty-9.1.5的老版本,现在需要升级到最新的9.4以上版本。但是在升级的过程中发生了奇怪的错误。org.apache.jasper.JasperException: PWC6033:Error in Javac Compilation for JSP大概的意思就是编译的JSP文件,无法被识别。这个坑我找了
记录一次 嵌入式Servlet容器 Jetty 升级过程中发生的问题
公司老项目使用的是Jetty-9.1.5的老版本,现在需要升级到最新的9.4以上版本。但是在升级的过程中发生了奇怪的错误。
org.apache.jasper.JasperException: PWC6033:
Error in Javac Compilation for JSP
大概的意思就是你的JSP文件,无法被编译和识别。这个坑我找了好多文章都没有解决。其实解决方式很简单,只要在你的启动参数(IDEA上 run configuration 里 VM options)加上一句话就可以了。
-Dorg.apache.jasper.compiler.disablejsr199=true
官网是这样解释的,
By default, the Glassfish JSP container tries to use the compiler that
is part of the JDK. NOTE: when using the JDK compiler, the system does
not save your class files to disk unless you use the saveBytecode
init-param as described below.
这里我直接给出链接,感兴趣的自己去官网看:
https://www.eclipse.org/jetty/documentation/9.2.22.v20170531/configuring-jsp.html#jsp-support
我先睡了。。
更多推荐
所有评论(0)