Hello,
I have a DelegatingVariableResolver and tried to do a Code:
lt;managed-beangt;
lt;managed-bean-namegt;#{orderBean}lt;/managed-bean-namegt;
lt;managed-bean-classgt;concept.view.bean.OrderBeanlt;/managed-bean-classgt;
lt;managed-bean-scopegt;sessionlt;/managed-bean-scopegt;
lt;/managed-beangt;
and Code:
lt;bean id=quot;orderBeanquot; class=quot;concept.view.bean.OrderBeanquot; singleton=quot;falsequot; scope=quot;sessionquot; parent=quot;baseManagedBeanquot; init-method=quot;initquot;/gt;
but somehow there is still some battle over the bean between JSF and Spring becase the setters of the fields get called when I press a commandButton but inside the backing-bean method the fields have gone back to null.
Help appreciated, Nik |