Hello,
I'm trying Spring Web 2.5 for about 5 hours now.
I want to do something like this:
And be able to call it with: /app/person/listCode:Controller class PersonController { public void list() { return list; } }
But I must be doing something terribly wrong, because I can't make it work without using
on the method.Code:RequestMapping("/person/list")
I tried using
without success.Code:<bean id="urlMapping" class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
Can someone help?
Thanks in advance.


Reply With Quote