整数をキーとするマップがあります。 ELを使用して、キーで値にアクセスするにはどうすればよいですか?
Map<Integer, String> map = new HashMap<Integer, String>();
map.put(1, "One");
map.put(2, "Two");
map.put(3, "Three");
私はこれがうまくいくと思ったが、うまくいかない(マップがすでにリクエストの属性にある場合):
<c:out value="${map[1]}"/>
フォローアップ:問題を追跡しました。どうやら${name[1]}
はLong
として数値を使用してマップ検索を実行します。 HashMap
をTreeMap
に変更し、エラーを受け取ったときにこれを把握しました。
Java.lang.ClassCastException: Java.lang.Integer cannot be cast to Java.lang.Long
マップを次のように変更した場合:
Map<Long, String> map = new HashMap<Long, String>();
map.put(1L, "One");
${name[1]}
は「One」を返します。それは何ですか? <c:out>
が数値を長いものとして扱うのはなぜですか。私には直観に反しているようです(intはlongよりも一般的に使用されているため)。
私の新しい質問は、Integer
値でマップにアクセスするためのEL表記はありますか?
最初の回答(EL 2.1、2009年5月)
this Java forum thread で述べたように:
基本的にオートボクシングは、整数オブジェクトをマップに配置します。すなわち:
map.put(new Integer(0), "myValue")
EL(Expressions Languages)は0をLongとして評価し、マップのキーとしてLongを探します。すなわち、以下を評価します。
map.get(new Long(0))
Long
はInteger
オブジェクトと決して同じではないため、マップ内のエントリは見つかりません。
これは簡単です。
2009年12月、JSP 2.2でEL 2.2が導入されました/ Java EE 6 、 EL 2.1と比較してわずかな違い 。
次のように思われます( " EL Expression parsing integer as long "):
EL 2.2内の
intValue
オブジェクトselfでメソッドLong
を呼び出すことができます:
<c:out value="${map[(1).intValue()]}"/>
これはここでの良い回避策かもしれません(以下で Tobias Liefke の answer で言及されています)
元の回答:
ELは次のラッパーを使用します。
Terms Description Type
null null value. -
123 int value. Java.lang.Long
123.00 real value. Java.lang.Double
"string" ou 'string' string. Java.lang.String
true or false boolean. Java.lang.Boolean
これを示すJSPページ:
<%@ taglib prefix="c" uri="http://Java.Sun.com/jsp/jstl/core"%>
<%@ page import="Java.util.*" %>
<h2> Server Info</h2>
Server info = <%= application.getServerInfo() %> <br>
Servlet engine version = <%= application.getMajorVersion() %>.<%= application.getMinorVersion() %><br>
Java version = <%= System.getProperty("Java.vm.version") %><br>
<%
Map map = new LinkedHashMap();
map.put("2", "String(2)");
map.put(new Integer(2), "Integer(2)");
map.put(new Long(2), "Long(2)");
map.put(42, "AutoBoxedNumber");
pageContext.setAttribute("myMap", map);
Integer lifeInteger = new Integer(42);
Long lifeLong = new Long(42);
%>
<h3>Looking up map in JSTL - integer vs long </h3>
This page demonstrates how JSTL maps interact with different types used for keys in a map.
Specifically the issue relates to autoboxing by Java using map.put(1, "MyValue") and attempting to display it as ${myMap[1]}
The map "myMap" consists of four entries with different keys: A String, an Integer, a Long and an entry put there by AutoBoxing Java 5 feature.
<table border="1">
<tr><th>Key</th><th>value</th><th>Key Class</th></tr>
<c:forEach var="entry" items="${myMap}" varStatus="status">
<tr>
<td>${entry.key}</td>
<td>${entry.value}</td>
<td>${entry.key.class}</td>
</tr>
</c:forEach>
</table>
<h4> Accessing the map</h4>
Evaluating: ${"${myMap['2']}"} = <c:out value="${myMap['2']}"/><br>
Evaluating: ${"${myMap[2]}"} = <c:out value="${myMap[2]}"/><br>
Evaluating: ${"${myMap[42]}"} = <c:out value="${myMap[42]}"/><br>
<p>
As you can see, the EL Expression for the literal number retrieves the value against the Java.lang.Long entry in the map.
Attempting to access the entry created by autoboxing fails because a Long is never equal to an Integer
<p>
lifeInteger = <%= lifeInteger %><br/>
lifeLong = <%= lifeLong %><br/>
lifeInteger.equals(lifeLong) : <%= lifeInteger.equals(lifeLong) %> <br>
上記のコメントに加えて、リクエストパラメータなどの変数に文字列値が含まれている場合に役立つヒントがあります。この場合、これを渡すと、JSTLは「1」という値をスティングとしてキーイングし、Mapハッシュマップで一致が見つからないという結果になります。
これを回避する1つの方法は、このようなことをすることです。
<c:set var="longKey" value="${param.selectedIndex + 0}"/>
これは、Longオブジェクトとして扱われ、マップMapなどに含まれるオブジェクトと一致する可能性があります。
次に、いつものように続けます
${map[longKey]}
数値を「(」「)」に入れると、Longのすべての関数を使用できます。そうすれば、longをintにキャストできます。
<c:out value="${map[(1).intValue()]}"/>
上記の投稿に基づいて私はこれを試しましたが、これはうまく機能しました。マップAのキーとしてマップBの値を使用したかった:
<c:if test="${not empty activityCodeMap and not empty activityDescMap}">
<c:forEach var="valueMap" items="${auditMap}">
<tr>
<td class="activity_white"><c:out value="${activityCodeMap[valueMap.value.activityCode]}"/></td>
<td class="activity_white"><c:out value="${activityDescMap[valueMap.value.activityDescCode]}"/></td>
<td class="activity_white">${valueMap.value.dateTime}</td>
</tr>
</c:forEach>
</c:if>
変更できないMap
キーを持つInteger
がある場合は、 カスタムEL関数 を記述して、Long
をInteger
に変換できます。これにより、次のようなことができます。
<c:out value="${map[myLib:longToInteger(1)]}"/>