有时候 启动springBoot 会报错,test时有时也是,java
相似 Failed to instantiate [org.springframework.test.context.web.ServletTestExecute,web
java.lang.NoClassDefFoundError: javax/servlet/ServletContextspring
这样的错误,spa
我遇到这个问题的缘由,是由于引用的 依赖版本不正确,code
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-test</artifactId> <version>4.3.2.RELEASE</version> <scope>test</scope> </dependency>
原来引用的是 3.XXX 的版本,改成以上版本就能够了blog