maven新建web项目提示The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path

来源:互联网 发布:epson投影仪软件 编辑:程序博客网 时间:2024/06/16 19:25

在pom.xml中添加下面代码来下载servlet-api:

<dependency>      <groupId>javax.servlet</groupId>      <artifactId>servlet-api</artifactId>      <version>2.5</version>      <scope>provided</scope>  </dependency>  

阅读全文
0 0
原创粉丝点击