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?
I’m having quite some trouble since I migrated my controllers from classical inheritance to
Share
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!