我的配置如下:
@org.springframework.stereotype.Controller
@RequestMapping("hello")
public class Controller {
public String hello(Model model){
model.addAttribute("msg","Hello,SpringMVC,Annotation");
return "hello";
}
}
报错:
web.xml配置和spring-config.xml配置都没有问题,却报404,在网上找了好久,但是都没有我要的解决方案,偶然间想到了解决办法如下:
@org.springframework.stereotype.Controller
public class Controller {
@RequestMapping("hello")
public String hello(Model model){
model.addAttribute("msg","Hello,SpringMVC,Annotation");
return "hello";
}
}
把requemapping换到方法上就可以了!
版权声明:本文为qq_43768254原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。