JSP错误"找不到" http://java.sun.com/jsp/jstl/core"的标记库描述符;

时间:2018-06-13 09:18:12

标签: java jsp jstl

我在第

行收到上述错误
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

作为依赖我

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>servlet-api</artifactId>
    <version>2.5</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.0.1</version>
    <scope>provided</scope>
</dependency>

并建立:

<build>
    <finalName>test-jsp</finalName>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
        <plugin>
            <artifactId>maven-war-plugin</artifactId>
            <configuration>
                <webXml>WebContent\WEB-INF\web.xml</webXml>
                <warSourceDirectory>WebContent</warSourceDirectory>
            </configuration>
        </plugin>
    </plugins>
</build>

最后是我的webapp.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns="http://xmlns.jcp.org/xml/ns/javaee"
    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
    id="WebApp_ID" version="3.1">
    <display-name>JSPTest</display-name>
    <welcome-file-list>
        <welcome-file>index.html</welcome-file>
        <welcome-file>index.htm</welcome-file>
        <welcome-file>index.jsp</welcome-file>
        <welcome-file>default.html</welcome-file>
        <welcome-file>default.htm</welcome-file>
        <welcome-file>default.jsp</welcome-file>
    </welcome-file-list>    
</web-app>

我已经阅读了以下问题,但无法让错误消失:

我正在运行Tomcat 9.0.8。什么可能导致此错误,我该如何解决?

2 个答案:

答案 0 :(得分:2)

尝试以下maven依赖。

 <dependency>
    <groupId>jstl</groupId>
    <artifactId>jstl</artifactId>
   <version>1.2</version>
 </dependency>
 <dependency>
 <!-- This can be ignored -->
 <groupId>org.apache.tomcat</groupId>
     <artifactId>tomcat-jasper</artifactId>
     <version>9.0.8</version>
  </dependency>

        <dependency>
        <groupId>taglibs</groupId>
        <artifactId>standard</artifactId>
        <version>1.1.2</version>
    </dependency>

答案 1 :(得分:0)

所以我自己找到了答案。我没有必要改变我的POM或任何东西。我必须做的是激活Project Facets并选择Tomcat作为运行时。

右键点击项目 - &gt;属性 - &gt;项目方面 - &gt;检查:动态Web模块,Java和JavaScript - &gt;点击右侧的Runtimes选项卡,然后检查Tomcat服务器

这已经解决了一些错误。最后一部分是使用项目部署maven依赖项。为此,你必须去:

右键点击项目 - &gt;属性 - &gt;部署组件 - &gt;添加... - &gt; Java构建路径条目 - &gt;选择(所有)条目并点击完成

这些是我必须采取的正确运行我的网络项目的步骤