java.lang.NoClassDefFoundError: javax/servlet/http/HttpServletRequest解决办法

有时候IDEA突然就报错了,报错信息如下:


这时候,需要添加一个依赖就能解决问题

<dependency>
  <groupId>org.springframework.boot</groupId>
  <artifactId>spring-boot-starter-tomcat</artifactId>
  <version>1.2.4.RELEASE</version>
</dependency>

猜你喜欢

转载自blog.csdn.net/Freya0110/article/details/79874381