java项目jsp报错
有时在导入maven项目时,jsp页面一直报错,具体解决方法及步骤如下:
1、在pom.xml配置文件中添加上javax.servlet的相关依赖:
<dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </dependency>
2、依赖tomcat类库:
项目右击—>build path —> configure build path — >libraries — > add libraries —> Server Runtime — >选择一个服务器lib —> ok
3、若不能解决报错,请继续操作
点击windows—>Preferences—>Validation—>把Show a confirmation dialog when performng manual validations 前边的√去掉—>Disable All —> apply —> ok
推荐教程:java教程
Atas ialah kandungan terperinci java项目jsp报错. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!