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

I would like to bind a backing bean's field to the selected value of a selectOneListbox. This value could be null, so i want to convert this to 0. This will set the selected value to the "default" selectItem. I'm using JSF2

I'm planning to do this with the http://java.sun.com/jstl/core taglib (using <c:if test="#{empty...}>)

My question is: is there a "cleaner" way to do this. Maybe JSF(2) related taglib?

Thankyou!

share|improve this question

2 Answers

up vote 3 down vote accepted

The "JSFish" way to do this would be to create a converter:

public Object getAsObject(FacesContext context, UIComponent comp, String param) {
    return (param.equals("0")) ? null : param;
}

public String getAsString(FacesContext context, UIComponent comp, Object obj) {
    return (obj == null) ? "0" : obj.toString();
}
share|improve this answer
Thank you for your suggestion. But my backing bean is also my Entity,Model Bean. I don't really want to add a transient field:) – Michael Bavin Dec 31 '09 at 13:50
In that case, my second suggestion would probably be best. – Zack Dec 31 '09 at 13:54

Just use Long or Integer instead of String as item value. EL will automatically coerce number (and boolean) values from/to string.

share|improve this answer
1  
Yep, that'll work if he sticks to the wrapper types (Integer instead of int) - EL won't coerce null to a primitive. – McDowell Dec 31 '09 at 14:45

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.