When I try to save an entity which is not compliant with their JPA validation-annotations, my view (JSF) displays the exceptions.
I wonder:
|
When I try to save an entity which is not compliant with their JPA validation-annotations, my view (JSF) displays the exceptions. I wonder: When is validated the entity?What is handling/linking my validation exceptions to the view? |
||||
|
|
During the JSF validations phase, which is the 3rd phase of the JSF lifecycle, between gathering and applying the submitted values (2nd phase) and updating the model values (4th phase) in.
Any validator (and converter) exception message is turned/stored in a
or all together in a generic
All missing validation messages will be logged to the stdout, or when you're running in development project stage, in the development stage warning messages which is automatically added to the view. |
|||
|
|
|
Validation happens after the Request values are submitted to the server but before they are applied to the Model Bean. This ensures the integrity of the Model. There is a data type conversion during this process and if JSF standard validators and converters are not enough to validate your data type, you can plugin your own. This tutorial describes standard validators and converters available in JSF. For writing custom validators, refer to O'Reilly's book on JSF. |
|||
|