absolute-ordering标记能解决More than one fragment with the name [spring_web] was found的原因和其他的解决办法

一大早起来,开开心心的写项目,可还没写多久,项目就出现了如下错误:

absolute-ordering标记能解决More than one fragment with the name [spring_web] was found的原因和其他的解决办法

排查了一下错误和找了些资料,发现出错的地方在于我/WEB-INF/lib目录下的spring-web-4.1.0.RELEASE.jar和spring-web-4.1.0.RELEASE-sources.jar里面的META-INF目录下都有一个web-fragment文件(解压jar包可见),关键在于web-fragment文件的内容都一样,它们有着相同的web片段名:

absolute-ordering标记能解决More than one fragment with the name [spring_web] was found的原因和其他的解决办法

web片段是Servlet3.0的可插入特性的体现,它是是web.xml的一部分,通过在web片段配置serlvet入口等,可以减轻开发人员负担,不用在web.xml中配置太多东西。

而出错的原因在于web片段在web.xml中排序部署默认是relative ordering(相对地址排序),如上,相对地址都是META-INF/spring_web,就会冲突发生错误,这点是可以验证:

我尝试解压其中一个jar包spring-web-4.1.0.RELEASE-sources.jar,把里面的web片段改名为spring_web_source然后保存再打包成jar包,如下

absolute-ordering标记能解决More than one fragment with the name [spring_web] was found的原因和其他的解决办法

删除项目原本的jar包放入新的然后启动tomcat,成功!

而<absolute-ordering/>能解决上述问题在于它是按绝对路径排序,它把jar包名也包括进去了,由于它们的jar包名不同,所以不改jar包的web片段名也能成功启动tomcat服务器

 

absolute-ordering标记能解决More than one fragment with the name [spring_web] was found的原因和其他的解决办法absolute-ordering标记能解决More than one fragment with the name [spring_web] was found的原因和其他的解决办法 Poulyield 发布了5 篇原创文章 · 获赞 0 · 访问量 83 私信 关注
上一篇:.NET IoC模式依赖反转(DIP)、控制反转(Ioc)、依赖注入(DI)


下一篇:Entity Framework 5.0系列之数据操作