ClassFormatException: Invalid byte tag in constant pool: 15问题解决_JAVA_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > JAVA > ClassFormatException: Invalid byte tag in constant pool: 15问题解决

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

 2019/5/16 15:52:02  lijun0349  程序员俱乐部  我要评论(0)
  • 摘要:服务器使用JDK1.8,使用tomcat7.X运行web工程。启动tomcat服务,报以下错误:org.apache.tomcat.util.bcel.classfile.ClassFormatException:Invalidbytetaginconstantpool:15错误截图:解决办法:修改{tomcat路径}/conf/web.xml文件的web-app标签,在其后面添加metadata-complete="true"属性即可。<web-appversion="3
  • 标签:for 解决 问题解决 问题 tag Ant class
服务器使用JDK1.8,使用tomcat7.X运行web工程。
启动tomcat服务,报以下错误

class="java" name="code">org.apache.tomcat.util.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 15


错误截图:


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

<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" metadata-complete="true">


重启tomcat服务已正常。
发表评论
用户名: 匿名