私はJSPとJSTLに慣れていないので、おそらくここで本当に馬鹿げたことをしているでしょう。
webappsのlibディレクトリにjavax.servlet.jsp.jstl-api-1.2.1とjavax.servlet.jsp.jstl-1.2.1があります。私はTomcat7で実行しています。違いがあれば、tomcatはEclipseによって起動されています。私のプロジェクトは「動的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式はすべて空になっているようです。