有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

我的jsp中的java错误标记库

我有一个使用Maven和Struts 1.3.10的项目

我的Pom中的依赖项。xml:

<dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts-core</artifactId>
            <version>1.3.10</version>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts-taglib</artifactId>
            <version>1.3.10</version>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts-extras</artifactId>
            <version>1.3.10</version>
        </dependency>
        <dependency>
            <groupId>org.apache.struts</groupId>
            <artifactId>struts-tiles</artifactId>
            <version>1.3.10</version>
        </dependency>
        <dependency>
            <groupId>jstl</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>
    ...
</dependencies>

我的JSP有错误

JSP示例:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<%@taglib uri="http://struts.apache.org/tags-html-el" prefix="html" %>
<%@taglib uri="http://struts.apache.org/tags-logic-el" prefix="logic" %>
<%@taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@taglib uri="http://struts.apache.org/tags-bean-el" prefix="beanEl" %>
<%@taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
<%@taglib uri="http://fckeditor.net/tags-fckeditor" prefix="fck" %>
<%@taglib tagdir="/WEB-INF/tags/" prefix="customTag" %>

<!-- Importation du CSS pour le widget Dialog -->
<link rel="stylesheet" type="text/css" href="<html:rewrite page="/css/yui/container.css" />"></link>
<!-- Importation du CSS pour le widget Calendar -->
<link rel="stylesheet" type="text/css" href="<html:rewrite page="/css/yui/calendar.css" />"></link> 

问题是,与taglib相比,我有很多错误

Can not find the tag library descriptor for "http://struts.apache.org/tags-html-el"

Can not find the tag library descriptor for "http://struts.apache.org/tags-logic-el"

等等等等

为什么错了


共 (1) 个答案

  1. # 1 楼答案

    由于EL标签在当今的服务器环境中通常是不必要的,所以它们是单独捆绑的。(他们以前也是,但原因不同。)

    http://mvnrepository.com/artifact/org.apache.struts/struts-el/1.3.10

    ➜  struts  jar tf struts-el-1.3.10.jar | grep tld
    META-INF/tld/
    META-INF/tld/struts-bean-el.tld
    META-INF/tld/struts-html-el.tld
    META-INF/tld/struts-logic-el.tld
    META-INF/tld/struts-tiles-el.tld