org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp

异常处理org.apache.jasper.JasperException: The absolute uri:
今天用Eclipse编程遇到了异常org.apache.jasper.JasperException: The absolute uri: 。
报这个错误主要是没有导入jstl这个jar包。但是我pom里明明有引入这个jar包

<dependency>
    <groupId>jstlgroupId>
    <artifactId>jstlartifactId>
    <version>1.2version>
    <scope>providedscope> 
dependency>

这个和maven的scope有关:

  1. compile: 默认编译依赖范围。对于编译,测试,运行三种classpath都有效
  2. test:测试依赖范围。只对于测试classpath有效
  3. provided:已提供依赖范围。对于编译,测试的classpath都有效,但对于运行无效。因为由容器已经提供,例如servlet-api
  4. runtime:运行时提供。例如:jdbc驱动

我看了下tomcat\lib目录下并没有jstl,所以需要scope不能选provided,改成compile,改问题解决。

你可能感兴趣的:(前端)