1. Collection exploration in validator interceptor stackoverflow.comA question about Java-Hibernate-Validator. I need to access to a collection attribute when my validation system intercepts an entity insert/update. I mean, my model defines A class with a set of B elements. When ... |
2. Question regarding Seam Interceptor and Hibernate Validator seamframework.org |
3. saveOrUpdateEventListener of interceptor for validation? forum.hibernate.orgHi, I want to call an isValid() method on every object hibernate is going to save into the database. Now i have two options: - Extend the DefaultSaveOrUpdateEventListener and implement the onSaveOrUpdate() method (and thus calling object.isValid() ). - Create an interceptor and implement onFlushDirty() and onSave() ( and call the isValid() in these two methods). Which of the two options ... |