Eclipse 需要哪些 JAR 文件才能使用 JSTL,以便它最终在 GAE/J 上运行?

2022-09-03 17:03:21

我一直在努力的时间比我想承认的要长,让JSTL在Eclipse下工作(最终在GAE / J下)。我已经下载了Eclipse,Google App Engine Extension for Eclipse和JSTL(http://download.java.net/maven/1/jstl/jars/ - jstl-1.2.jar在WEB-INF\lib目录中)。

我的代码和输出如下:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<HTML><HEAD><TITLE>Test Page</TITLE></HEAD><BODY>
Test Page

<c:set var="myvar" value="3"/>

</BODY></HTML>

我得到的错误是:

The tag handler class for "c:set" (org.apache.taglibs.standard.tag.rt.core.SetTag) was not found on the Java Build Path 
test.jsp
[my app's path and name]
line 8
JSP Problem

从这个页面的最后一篇文章来看,我认为我不需要一个标准.jar(http://forums.sun.com/thread.jspa?threadID=701267),无论如何,我无法在Oracle download.java.com 网站上找到一个标准以及jstl jar。

编辑4:现在工作 - 步骤:
1)使用Apache版本
2)实际上在构建路径中包含jar文件(右键单击eclipse项目并点击属性->Java构建路径->库->添加类文件夹...;默认情况下,war/WEB-INF/lib显然不在构建路径上)
3)将文件c.tld添加到war/WEB-INF/tld

将您的网络.xml如下所示:

<\?xml version="1.0" encoding="UTF-8"?>
<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">
<display-name>JSTLExample</display-name>
<welcome-file-list>
    <welcome-file>index.html</welcome-file>
</welcome-file-list>
<jsp-config>
    <taglib>
        <taglib-uri>http://java.sun.com/jstl/core</taglib-uri>
        <taglib-location>/WEB-INF/tld/c.tld</taglib-location>
    </taglib>
</jsp-config>  
</web-app>

测试 jsp 文件内容:

 <?xml version="1.0" encoding="UTF-8" ?>
 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>

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

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
 <title>Test Apache ServiceMix with JSTL</title>
 </head>
 <body>

 This is a testpage.

 <%= "hello" %>
 <c:forEach var="i" begin="1" end="10" step="1">
 <c:out value="${i}" />

 <br />
 </c:forEach>


 </body>
 </html>

答案 1

我遇到了同样的问题,我只是把前缀= “c”放在taglib定义的末尾

以前:

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

后:

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

所有警告都从Eclipse中消失了。


答案 2

您只需要在 Maven POM 中指定此依赖项:

<dependency>
    <groupId>jstl</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>

在我的代码中,这提供了以下 JSP taglib 工作所需的一切:

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

推荐