No mapping found for HTTP request with URI?
问题 Hi I have the following code: Controller: @Controller public class HelloWorldController { @RequestMapping("/hello") public ModelAndView HelloWorld() { String message = "My First SpringMVC Program "; return new ModelAndView("hello","message",message); } web.xml <servlet> <!-- load on startup is used to determine the order of initializing the servlet when the application server starts up. The lower the number, earlier it starts --> <servlet-name>spring</servlet-name> <servlet-class>org