eclipse搭建第一个SSM项目 遇到的问题
Posted wushengwuxi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了eclipse搭建第一个SSM项目 遇到的问题相关的知识,希望对你有一定的参考价值。
1、Cannot change version of project facet Dynamic web module to 3.0
参考地址: https://www.cnblogs.com/gmq-sh/p/4737130.html
2、 No mapping found for HTTP request with URI [/demo] in DispatcherServlet with name ‘SpringMVC‘
参考地址: https://blog.csdn.net/qq_39966266/article/details/79387262
一般是controller类中注解@RequestMapping映射错误,
http://localhost:8080/demo/ 与 webapp/WEB-INF/welcome.jsp相对应(在web.xml中welcome-file-list配置)
http://localhost:8080/demo/test/getUser?id=1如果没有结果, 看看controller类,test与类的@RequestMapping("/test")相对应,
getUser与方法的@RequestMapping("getUser")相对应,该方法的返回值result与result.jsp相对应,result.jsp在webapp/WEB-INF/jsp/中
以上是关于eclipse搭建第一个SSM项目 遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章