ClassFormatException: Invalid byte tag in constant pool: 15问题解决

阅读更多
服务器使用JDK1.8,使用tomcat7.X运行web工程。
启动tomcat服务,报以下错误:

org.apache.tomcat.util.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 15


错误截图:
ClassFormatException: Invalid byte tag in constant pool: 15问题解决_第1张图片

解决办法:
修改{tomcat路径}/conf/web.xml文件的web-app标签,在其后面添加metadata-complete="true"属性即可。



重启tomcat服务已正常。

你可能感兴趣的:(tomcat,java)