我是 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 表达式似乎都是空的。