环境:eclipse 4.11.0
SpringFramework 5.0.2
Tomcat 8.5.40
错误信息:Caused by: org.apache.catalina.LifecycleException 以及 More than one fragment with the name [spring_web] was found. This is not legal with relative ordering
正确的解决方法:
add
<absolute-ordering />
tag to your web.xml
just under the <display-name>
tag. should work.解决方法网址:https://stackoverflow.com/questions/54290263/more-than-one-fragment-with-the-name-spring-web-was-found-this-is-not-legal-w
thanx Roman Sterlin