প্রাথমিক উত্তর (EL 2.1, মে 2009)
এই জাভা ফোরাম থ্রেডে উল্লিখিত হিসাবে :
মূলত অটোবক্সিং মানচিত্রে একটি পূর্ণসংখ্যার বস্তু রাখে। অর্থাত:
map.put(new Integer(0), "myValue")
EL (এক্সপ্রেশন ভাষা) 0 টি লং হিসাবে মূল্যায়ন করে এবং মানচিত্রে কী হিসাবে দীর্ঘ হিসাবে সন্ধান করে। অর্থাৎ এটি মূল্যায়ন করে:
map.get(new Long(0))
যেহেতু Long
কখনই কোনও Integer
বস্তুর সমান হয় না , এটি মানচিত্রে প্রবেশের সন্ধান পায় না।
সংক্ষেপে এটি।
২০০৯ সালের মে থেকে আপডেট (EL 2.2)
ডিসেম্বর 2009 JSP 2.2 / জাভা EE 6 এল 2.2 প্রবর্তনের দেখেছি একটি সঙ্গে, এল 2.1 তুলনায় কয়েক পার্থক্য ।
মনে হয় (" EL এক্সপ্রেশনটি দীর্ঘকাল পূর্ণসংখ্যাকে পার্সিং করে ") যে:
আপনি পদ্ধতি কল করতে পারেন intValue
উপর Long
বস্তু স্ব এল 2.2 ভিতরে :
<c:out value="${map[(1).intValue()]}"/>
(এছাড়াও মধ্যে নিম্নে উল্লেখিত এটা একটা ভাল কার্যসংক্রান্ত এখানে হতে পারে Tobias Liefke এর উত্তর )
আসল উত্তর:
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
জেএসপি পৃষ্ঠাটি এটি প্রদর্শন করে:
<%@ 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>