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 一下再重启 。谨以此记录一下!
原文地址:https://www.cnblogs.com/liupengjuan/p/11985752.html
时间: 2024-10-08 15:52:25