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?