次のコードがあります。
<%@ page language="java" session="true" contentType="text/html" pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%
request.setAttribute("action", request.getParameter("action"));
%>
<c:choose>
<c:when test="${action == null}">
NULL
</c:when>
<c:when test="${action == view}">
VIEW
</c:when>
</c:choose>
ただし、でURLを渡すと?action=view
、表示されませんVIEW
。
どこが間違っていますか?