java.lang.IllegalArgumentException: More than one fragment with the name [spring_web] was found.
删掉一个,重新运行tomcat即可,如果在项目的 web-inf 目录的 lib 目录中也存在 不同的两个jar 包,也得删掉一个哦,要不再编译运行的时候还是会加上的。
解决办法就是:
在web.xml加一个标签:<absolute-ordering />
<web-app> <display-name>Archetype Created Web Application</display-name> <absolute-ordering></absolute-ordering> </web-app>