Tagged Questions

3
votes
2answers
3k views

Convention over configuration with Spring MVC using ControllerClassNameHandlerMapping?

Following the directions from Spring Source and the book Spring in Action, I am trying to set up Spring MVC in a way that minimizes xml configuration. However according to Spring Source this is how ...
1
vote
1answer
92 views

Spring MVC: CoC for requesting mapping

Having used other MVC frameworks such as Zend Framework in the past, I am used to the idea of requests being mapped as follows by default. http://mysite.com/user/add calls the add method in the User ...