Validation Framework in Java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T11:13:08Z http://stackoverflow.com/feeds/question/580686 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/580686/validation-framework-in-java 1 Validation Framework in Java Franklin 2009-02-24T06:40:42Z 2009-07-11T04:55:00Z <p>We are currently in the process of refactoring our plugin API**(JDK 1.4 compliant)** which is shipped to our clients in the form of a jar file(ie, no need to have javascripts to be generated and so forth). This is a very lightweight plugin so that we have kept away as many dependent jars as possible like Spring. During this process we started to understand the need to have a proper validation methodology which is faciliated by some validation Framework. Strangly, I couldnt find much options in these lines (like other open source projects)apart from a few such as <strong>Commons Validator,Drools and Spring support</strong>.</p> <p>Drools seems to be so complex for my needs. However Commons validator looks prehistoric in its style of validation.</p> <p><strong>I cannot use annotation based validation</strong> cause it has to be JDK 1.4 and would prefer something that could be externalized thereby not requiring to compile classes again in case of changes.</p> <p>Are there better options available?</p> http://stackoverflow.com/questions/580686/validation-framework-in-java/580738#580738 1 Answer by cliff.meyers for Validation Framework in Java cliff.meyers 2009-02-24T07:04:15Z 2009-02-24T07:04:15Z <p>The XWork validation system was pretty decent back in the day but I haven't used it for almost 3 years now. I'm quite certain it was designed to be totally standalone but has also been rolled into Struts 2 along with the rest of WebWork. Info is here:</p> <p><a href="http://www.opensymphony.com/xwork/wikidocs/Validation%20Framework.html" rel="nofollow">http://www.opensymphony.com/xwork/wikidocs/Validation%20Framework.html</a></p> http://stackoverflow.com/questions/580686/validation-framework-in-java/580763#580763 0 Answer by amit.dev for Validation Framework in Java amit.dev 2009-02-24T07:13:48Z 2009-02-24T07:13:48Z <p>Have you tried <a href="http://www.i-screen.org/docs/index.html" rel="nofollow">iScreen</a>? Its pretty good (much better than commons validator).</p> http://stackoverflow.com/questions/580686/validation-framework-in-java/580784#580784 0 Answer by boutta for Validation Framework in Java boutta 2009-02-24T07:22:27Z 2009-02-24T07:22:27Z <p>We're using the <a href="http://www.sapia-oss.org/projects/vlad/" rel="nofollow">VLAD framework</a> from sapia, can be configured via XML and BeanShell.</p> http://stackoverflow.com/questions/580686/validation-framework-in-java/584279#584279 0 Answer by Paul for Validation Framework in Java Paul 2009-02-25T00:29:11Z 2009-02-25T00:29:11Z <p>Try Hibernate Validator. It's primarily directed at using annotations, but is perfectly usable without. I used it a few times, and liked its model.</p> http://stackoverflow.com/questions/580686/validation-framework-in-java/599349#599349 0 Answer by MetroidFan2002 for Validation Framework in Java MetroidFan2002 2009-03-01T06:07:41Z 2009-03-01T06:07:41Z <p>ValangValidator is a Spring-compatible validator that uses "valang" syntax such that if all you need is simple validations, you can just plug in a valang validator for your spring validator bean. ValangValidator also enables you to plug in your own customn funtion implementations. It is part of "springmodules".</p> <p>See this <a href="https://springmodules.dev.java.net/docs/reference/0.6/html/validation.html" rel="nofollow">link</a> for more information.</p> http://stackoverflow.com/questions/580686/validation-framework-in-java/1112991#1112991 0 Answer by Mike Hogan for Validation Framework in Java Mike Hogan 2009-07-11T04:55:00Z 2009-07-11T04:55:00Z <p>If you prefer your validation rules in declarative style, you can try <a href="http://jvalidations.codehaus.org/" rel="nofollow">http://jvalidations.codehaus.org/</a></p>