今天打算把Virgo-tomcat-server从3.0.3升级到3.5.0,主要是因为我想脱离spring DM,进入blueprint的时代。
期间碰到些问题,各种classNotFoundException在此以作记录
以下为3.5.0官方变更链接
http://www.eclipse.org/virgo/download/release-notes/3.5.0.RELEASE.php
版本升级:
1:The familiar Virgo Jetty Server is now upgraded to Jetty 8.1.1.
2:Equinox and other Eclipse bundles are upgraded to their Eclipse Juno bits.
3:Logback is now updated to version 1.0.0.
4:SLF4J is updated to version 1.6.4
其中第四点对升级的影响是最大的,因为之前3.0.3的版本使用的SLF4J1.6.1
所以在bundle的清单文件MANIFEST.MF中将Import-bundle或者Required-bundle进行以下相应替换
1:com.springsource.slf4j.org.apache.commons.logging;version="[1.6.1,1.6.1]"
替换为
org.slf4j.jcl;version="[1.6.4.v20120130-2120,1.6.4.v20120130-2120]"
2:com.springsource.slf4j.api;version="[1.6.1,1.6.1]",
替换为
org.slf4j.api;version="[1.6.4.v20120130-2120,1.6.4.v20120130-2120]"
目前只发现这两个问题,后续发现再做补充!