maven项目,所有的包都是按照提示,自动添加的,知道启动项目报错 才发现 spring-web 和 spring-webmvc 版本不一致
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-web</artifactId> <version>4.3.7.RELEASE</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>4.3.7.RELEASE</version> <scope>compile</scope> </dependency>
注意改完之后 最好先 clean install 一下再重启 。谨以此记录一下!
后边其他模块报:javax.servlet.ServletException: Servlet.init() for servlet springMVC threw exception 也使用了该方法。