I'm having quite some trouble since I migrated my controllers from classical inheritance to use the annotations like @Controller and @RequestMapping. The problem is that I don't know how to plug in validation like in the old case. Are there any good tutorials about this?
+6
A:
Have a look at §13.11.x of the Spring MVC documentation. It covers annotation-based controller configuration, including data binding. It should be very useful to you.
Good luck!
yawmark
2009-01-28 22:40:10
+1
A:
At a pinch, there's always this thing: http://annovalidator.sourceforge.net/ - it's all tooled around using annotations for validation, and is designed to work with Spring.
Mike Norrish
2010-03-19 00:32:22
Sounds interesting, I'll definitely have a look at it :-)
cdecker
2010-03-23 14:47:35
+2
A:
Spring 3 includes improved support for validation, and in particular, JSR-303 validation. You can validate form beans using the @Valid annotation and . See
http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/validation.html
section 5.7.
Willie Wheeler
2010-06-26 16:22:01