On transition evaluate redirect to a view without showing FacesMessage
Hello
On transition, my flow redirect without rendering the FacesMessage contained in the FacesContext current instance, the issue is the same with the MessageContext.
The service layer is functionally tested so it might not come from this area.
the whole code is available there
the portion who should causing troubles are linked there :
RegistrationController.groovy
enterRegistration.xhtml
web.xml
applicationContext.xml
in the flow xml definition file the statement
PHP Code:
<view-state id="enterRegistration" model="model">
<transition on="cancelRegistrationAction" to="exitRegistrationAction"/>
<transition on="validateRegistrationAction" to="reviewRegistration">
<evaluate expression="registrationController.validate(model)"/>
</transition>
</view-state>
should display the facesmessages, instead it's redirect to the next step on the next view with messages into the facescontext (spyed on the console) but not rendered