When I\'m trying to run this simple html form:
Enter a new Page
You map your dispatcher on *.do:
Dispatcher *.do
but your controller is mapped on an url without .do:
@RequestMapping("/editPresPage")
Try changing this to:
@RequestMapping("/editPresPage.do")