小编典典

将JSTL添加到jsp(Tomcat 8)

tomcat

我想在我的jsp中使用JSTL库。现在,我遵循了一个教程,它告诉我将此行添加到jsp页面:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

它给我错误无法使用uri和URL解析taglib。

我正在运行tomcat8。我的web.xml如下所示:

<web-app version="2.4"
         xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">

有人知道如何解决这个问题吗?


阅读 575

收藏
2020-06-16

共1个答案

小编典典

您需要jstl在类路径中为该库添加jar 。如果使用的是maven,则添加此依赖项。

<dependency>
        <groupId>javax.servlet</groupId>
        <artifactId>jstl</artifactId>
        <version>1.2</version>
    </dependency>

将此添加到您的pom.xml。

2020-06-16