Are you using JDK1.5? Autoboxing should take care of this...
Scott Matthias Wessendorf wrote:
I think it was get for Boolean is for boolean ?? at least worth to try... -m On Jan 11, 2008 2:36 PM, VISTICOT FREDERIC <[EMAIL PROTECTED]> wrote:It seems that mapping the selectOneCheckbox value attribute with a Boolean does not work. How to do this mapping ? Of course the solution is to use boolean instead of Boolean !!! But it is not always possible !! Is the solution to use a converter ??? It's not so user friendly !!! <tr:selectOneCheckbox value="#{myBean.value}"/> MyBean { Private Boolean _value; Public Boolean isValue() {return _value;} Public void setValue(Boolean value) {_value = value}; }

