jsp 报错 The superclass "jakarta.servlet.http.HttpServlet" was not found on the Java Build Path


方式一:右键项目  选择 properties  添加运行时环境即可

 

方式二:如果是maven项目:

可以在pom.xml中加入

 1 <dependency>
 2             <groupId>javax.servlet</groupId>
 3             <artifactId>servlet-api</artifactId>
 4             <version>2.5</version>
 5             <scope>provided</scope>
 6         </dependency>
 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM