私はこの小さなコードを持っています
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jstl/fmt" %>
<!DOCTYPE html>
<html>
<head>
<title><%= request.getAttribute("index_title") %></title>
</head>
<body>
<c:out value="${request['index_title']}" />
</body>
</html>
式<%= request.getAttribute("index_title") %>
は正しく置換されていますが、<c:out value="${request['index_title']}" />
そうではありません。私も試し${request['index_title']}
てみ${index_title}
ましたが、誰も動作しません。
それは私の最初のjspなので、些細なエラーに違いないと本当に思いますが、エラーがどこにあるのか理解できません。
追加の質問:
私のサーブレットで私はしますrequest.setAttribute ("index_title", "page title");
。この問題は、リクエストに追加しようとしているものが Bean ではないという事実に関連している可能性がありますか?