eclipse+maven新建项目index.jsp页面报错

xiaoxiao2021-02-28  117

 错误  The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path。

解决方法:

在pom.xml文件中加入

<plugins> <!-- 编码和编译和JDK版本 --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> <encoding>utf8</encoding> </configuration> </plugin> </plugins>

然后右键项目名》maven》update project   这个时候你会发现这个错误没有了

转载请注明原文地址: https://www.6miu.com/read-25416.html

最新回复(0)