Hi,
We're using expression language to access properties of our beans like so: -
${activity.enabled}
However we've hit a problem with the autoboxing support. The bean 'activity' is defined like: -
public interface Activity {
public Boolean isEnabled();
}
However because the type is not the primitive 'boolean', the EL parser tries to find a method called getEnabled (not isEnabled). The interpreter then throws an error (it can't find the 'enabled' property).