0

我是 JSP 和 JSTL 的新手,所以我可能在这里做一些非常愚蠢的事情。

我的 webapps 的 lib 目录中有 javax.servlet.jsp.jstl-api-1.2.1 和 javax.servlet.jsp.jstl-1.2.1。我在Tomcat7上运行。如果有任何区别,则 Eclipse 正在启动 tomcat。我的项目是“动态 Web 项目”。

web.xml看起来像这样:

<?xml version="1.0" encoding="UTF-8"?>
<web-app 
    xmlns="http://java.sun.com/xml/ns/javaee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    version="3.0">
        <display-name>example</display-name>
        <welcome-file-list>
                <welcome-file>index.jsp</welcome-file>
        </welcome-file-list>
</web-app>

index.jsp看起来像这样

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Example</title>
</head>
<body>
    <%
        String s = "Foo";
    %>
    <c:out value="${s}" />
    <c:out value="Bar" />
</body>
</html>

我希望这会显示一个页面Foo Bar。相反,它只显示Bar. 这发生在我所有的 EL 表达式中。我所有的 EL 表达式似乎都是空的。

4

2 回答 2

1

我看过你的自我回答,但这不是正确的方法:

如果您已经在使用带有c:outs 的 JSTL,请避免完全使用 scriptlet 并替换

<%
    request.setAttribute("s", "Foo");
%>

有了这个:

<c:set var="s" value="Foo" scope="request"/>

然后打印值将是:

<c:out value="${requestScope.s}"/>

或者仅仅是${requestScope.s}因为c:out标签并不是真正需要的,除非您需要转义 XML 字符。

${s}也可以,因为 cointainer 在所有范围内搜索,直到找到第一次出现,但是,明确地写它更干净 imo)

于 2013-02-10T21:32:57.933 回答
0

这只是我不了解EL。

代替

<%
    String s = "Foo";
%>

它应该是:

<%
    request.setAttribute("s", "Foo");
%>
于 2013-02-10T02:45:32.293 回答