Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code on my jsp page:

<c:out value="${items}" /><br />

<c:forEach items="${items}" var="item">
     1. <c:out value="${item.key}" /><br />
     2. <c:out value="${item.key eq 70}" /><br />
     3. <c:out value="${items[70]}" /><br />
     4. <c:out value="${items[item.key]}" /><br />
</c:forEach>

And it produces the following output

{70=true}
1. 70
2. true
3.
4. true

And I just can't figure out why 3. is empty. Any ideas?

The map is of type Map<Integer, Boolean>

share|improve this question
1  
What are the types of the keys in the map? Integer, Long, Byte, Characater, what? – skaffman Dec 11 '09 at 8:11

1 Answer

Basically autoboxing puts an Integer object into the Map. ie: map.put(new Integer(0), "myValue")

EL evaluates 0 as a Long and thus goes looking for a Long as the key in the map. ie it evaluates: map.get(new Long(0))

As a Long is never equal to an Integer object, it does not find the entry in the map. Thats it in a nutshell.

Refer forum http://forums.sun.com/thread.jspa?messageID=9702932#9702932

share|improve this answer
That explains it then, thanks. – user224588 Dec 11 '09 at 11:00
Solution: use Map<Long, Boolean> instead. – BalusC Dec 11 '09 at 11:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.