今天把tomcat从6.0.18升级到7.0.25,发现了两个问题
问题1
java.lang.ClassNotFoundException: org.apache.catalina.mbeans.ServerLifecycleListener
发现居然找不到这个类,然后把catatina.jar下载下来反编译一看mbenas这个文件夹居然是空的
解决办法
6.0.18以前,conf/server.xml里面的配置有这项
<Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" />注释掉就可以了
<!--<Listener className="org.apache.catalina.mbeans.ServerLifecycleListener" /> -->
问题2
严重: Begin event threw exception
java.lang.IllegalArgumentException: taglib definition not consistent with specification version
tomcat 6.0.18里面的web.xml里面的tab配置如下
<taglib>
<taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
<taglib-location>/WEB-INF/c.tld</taglib-location>
</taglib>
tomcat 7.0.25里面web.xml的tag配置应该如下所示
<jsp-config>
<taglib>
<taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
<taglib-location>/WEB-INF/c.tld</taglib-location>
</taglib>
</jsp-config>