Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need some complex validation logic which would be across multiple fields. Is there a way to do this every time save() or update() on a model is called? I m currently using Ebean as my ORM. The only way I can think of right now is to override save() like:

public class User extends Model {
  @Override
  public void save(){
    if(this.validate()){
      super.save();
    }
  }
 ..
}

Is there a more standardized way to do this?

share|improve this question
1  
How about standard way for handling binding failures? playframework.org/documentation/2.0.2/JavaForms it allows for more clever error maintenance. – biesior Aug 21 '12 at 20:12
I m not really using HTTP forms. Also, the data in my request does not match 1:1 with my model. Isnt there a way for me to do this in the model? – ankimal Aug 21 '12 at 21:15
Nope, validation expects that fields with constraints exist in the request (you don't need to use form, but you need name the params as it was the form) – biesior Aug 21 '12 at 21:20
Well then maybe I just do it like I mentioned above. I am using @Constraints on my fields but cross-field validation must happen somewhere. – ankimal Aug 21 '12 at 21:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.