OK. Maybe your mapping
String is incorrect. Do you need to put @RequestMapping(value="/viewAll.view", method=RequestMethod.GET)
or somtimes just @RequestMapping(value="/viewAll", method=RequestMethod.GET)
I always forget if you have to have the leading "/"
On another note. If you are new to Spring and using the latest version. Having your controllers extend or implement a Spring Controller class or interface is not a best practice. In today's Spring your Controllers should just be POJOs. This makes your Controller less coupled to Spring.
Thanks
Mark