Struts2 Validation at the action vs domain object level - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T01:18:29Z http://stackoverflow.com/feeds/question/212473 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/212473/struts2-validation-at-the-action-vs-domain-object-level 0 Struts2 Validation at the action vs domain object level Vincent Ramdhanie 2008-10-17T14:49:25Z 2008-10-17T14:52:42Z <p>The struts2 validation framework allows you to define your validation for an action or at the domain object level.</p> <p>My question is, is there an advantage or disadvantage using one over the other? What do you recommend?</p> <p>My own findings: You may use the same domain objects in several actions and may have to re-define validation rules per action...maybe its better to place the validation rules in the object. But, I feel uncomfortable placing validation rules at the domain level since it seems to be something that belongs in the action. </p> http://stackoverflow.com/questions/212473/struts2-validation-at-the-action-vs-domain-object-level/212490#212490 1 Answer by John Topley for Struts2 Validation at the action vs domain object level John Topley 2008-10-17T14:52:42Z 2008-10-17T14:52:42Z <p>In the MVC architecture the validation should be done at the model level i.e. domain objects. I don't think it's appropriate to have validation logic in controllers (Actions).</p>