1. ホーム
  2. java

[解決済み] EL Integer keyでマップの値にアクセスする

2023-06-06 04:03:42

質問

IntegerをキーとするMapを持っています。ELを使用して、どのようにキーによって値にアクセスすることができますか?

Map<Integer, String> map = new HashMap<Integer, String>();
map.put(1, "One");
map.put(2, "Two");
map.put(3, "Three");

これでうまくいくと思ったのですが、うまくいきません(mapがすでにリクエストの属性にある場合)。

<c:out value="${map[1]}"/>

フォローする。 問題を突き止めました。どうやら ${name[1]} は、その番号を Long . これを理解したのは HashMapTreeMap に変更し、エラーを受け取りました。

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> は数値をlongとして扱うのでしょう。私には直感に反しているように思えます(intはlongよりも一般的に使用されているので)。

というわけで、私の新しい疑問は Integer の値でマップにアクセスするEL表記はあるのでしょうか?

どのように解決するのですか?

初期回答 (EL 2.1, 2009年5月)

で述べたように このjavaフォーラムのスレッド :

<ブロッククオート

基本的にオートボックスはMapにIntegerオブジェクトを格納します。 つまり

map.put(new Integer(0), "myValue")

EL (Expressions Languages) は0をLongとして評価し、マップのキーとしてLongを探します。 つまり、評価されます。

map.get(new Long(0))

として Long とは決して等しくないので Integer オブジェクトと等しくない場合は、マップ内のエントリを見つけられません。

簡単に言うとそういうことです。


2009年5月以降のアップデート(EL 2.2)

2009年12月、EL 2.2がJSP 2.2 / Java EE 6と共に導入されました。 とのことです。 EL 2.1と比較していくつかの相違点があります。 .

と思われます(" EL Expressionが整数をlongとしてパースしている。 ")ということです。

というメソッドを呼び出すことができます。 intValue の上で Long オブジェクトの自己をEL 2.2内部で :

<c:out value="${map[(1).intValue()]}"/>

ここでは良い回避策になるかもしれません(以下でも紹介されている Tobias Liefke 's 答え )


オリジナルの回答です。

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>