Hello guys
in this code
my on-exception transition works fine, it goes to the desired view-stateCode:<action-state id="transaccioncompletacomprafacturaautohonda-dos"> <bean-action bean="idConcreteProcesoCompraFacturaImplManagerObjectTransactional" method="procesoUpdateCabeceraFacturaCompraandInsertarArticuloAutoBO"> <method-arguments> <argument expression="${flowScope.cabeceraFacturaCompraCommand}"/> </method-arguments> </bean-action> <transition on="success" to="transaccioncompletacomprafacturaautohonda-tres" /> <transition on-exception="com.modelo.excepciones.MyPrimaryKeyException" to="transaccioncompletacomprafacturaautohonda-uno" /> </action-state>
the problem is how in the jsp rendered of the view-state
how i can show a customize error message if the MyPrimaryKeyException
was thrown?
thanks in advanced


Reply With Quote
