一、org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application
1、问题原因:
缺少相关jar(jstl.jar,和standard.jar) 包
2、 解决方法:
在Maven仓库中http://www.mvnrepository.com/search?q=standard.jar
搜索这两个jar包,并将依赖项添加到pom.xml文件中。
二、程序运行时,报错内容如下:
The requested resource is not available.
出错原因:在jsp中,action处理路径写错,如下所示:
正确的写法是:action=”user.do”
相应地在这里展示下控制器中路径和web.xml中的路径配置
三、Web工程在运行时报错“java.lang.ClassNotFoundException: org.apache.jsp.index_jsp
”
原因:与JSP有关的Jar包没有导入
解决方法:
在pom.xml中导入一下内容:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.5</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<artifactId>jsp-api</artifactId>
<version>2.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
详细内容请参考附件