I have a spring MVC application that I'm working on and came to a stop point. When I think from the index.jsp that the controller is mapping the request, I get a 404 - the requested resource () is not available.
The console output shows me when I'm making:
March 16, 2011 1:07:24 Prime org.springframework.web.servlet.handler.AbstractUrlHandlerMapping RegisterHandler Info: The url looks like this:
The url looks like this: [mimited URL path [/ ExxenseRpt / Project. *] 'ProjectAddEditController' P> The request mapping in the controller looks like this:
@RequestMapping (value = "/ expense RPT / project")
Clearly, me Something missing is missing all my mapping In a similar way, they are failing.
Try mapping your controller
@RequestMapping ( Value = "/ExpenseRpt/Project.html")
Comments
Post a Comment