Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Whenever doing <c:set var="name" value="1" />, #{name} is always a String as evidenced by #{name.class}. Is there any way to in a JSF/Facelets context to set a scoped attribute that is an Integer or Long literal value?

share|improve this question

1 Answer

EL has Automatic Type Conversion. This article has some good information. However, the short of it is that you shouldn't care. You should be able to do things like the following as long as param.month is, in fact, an Integer.

<c:set var="myInteger" value="${param.month}"/>
<p>
The value of myInteger is:<c:out value="${myInteger}"/>
Perform a multiplication operation to show that the type is correct:
<c:out value="${myInteger *2}"/>
share|improve this answer
+1 although I corrected that you incorrectly called it JSTL instead of EL. JSTL is a taglib as outlined here java.sun.com/products/jsp/jstl/1.1/docs/tlddocs, EL are those ${} things as outlined in this JSP/EL spec: jsp.dev.java.net/spec/jsp-2_1-fr-spec-el.pdf – BalusC Mar 17 '10 at 17:47
Ah, I just need to use an expression and not a literal, so if I do value="#{1}" then it will be a long. I still don't like how you can't control whether it is long or int though. – GreenieMeanie Mar 17 '10 at 17:47
Thanks, just a typo. My bad. I've been out of Java land for a while now. – Randy Simon Mar 17 '10 at 17:48
1  
@GreenieMeanie: That's the nature of EL and usually shouldn't harm. If you want type safety, use JSF components instead. If it troubles, ask a new question how it hurts then we'll provide solutions/workarounds. By the way, using JSTL in JSF is not always considered a good practice. – BalusC Mar 17 '10 at 17:49
@Balus: The whole JSP/JSF/EL/JSTL/Facelets thing is a mess and so hard to keep track of the exact terms and versions these days... – GreenieMeanie Mar 17 '10 at 17:49
show 1 more comment

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.