Spring MVC Question. I need to port a Spring 2.5 app to a Spring 2.0 Jboss server. The only Spring 2.5 constructs used are the following Controller Annomations: @Controller, @RequestMapping, @ReqestParm, @ModelAttribute and @Autowired.
I am having difficulty determining which base controllers to extend or implement.
Any thoughts on how to migrate Controllers back to 2.0 from 2.5 would be helpful. Ideally, a before (Spring 2.0) / After (Spring 2.5) example would be great.
I am new to Spring.
Thanks.