Struts2 Validation at the action vs domain object level - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T01:18:29Zhttp://stackoverflow.com/feeds/question/212473http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/212473/struts2-validation-at-the-action-vs-domain-object-level0Struts2 Validation at the action vs domain object levelVincent Ramdhanie2008-10-17T14:49:25Z2008-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#2124901Answer by John Topley for Struts2 Validation at the action vs domain object levelJohn Topley2008-10-17T14:52:42Z2008-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>