maven搭建springmvc环境时测试问题
1.配置没有出现错误,可以正常发布在tomcat服务器上。
2.控制层测试代码
@Controller
public class indexController {
@RequestMapping("hello")
public String helloworld(){
return "idnex1";
}
}
3.测试路径http://localhost:8080/demo/hello1.html
页面显示错误
HTTP Status 404 -
type Status report
message
description The requested resource is not available.
Apache Tomcat/8.0.33
4.发布到服务器时跟路径也无法得到 http://localhost:8080/demo/警告: No mapping found for HTTP request with URI [/demo/] in DispatcherServlet with name 'Dispatcher'
求大神建议
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
@RequestMapping("hello"),那么请求就是“hello”,为什么后面多了一个1,你又没有使用通配符
同意楼上的,就发这点东西看啥。。。还demo出来了。。
看不懂说些什么乱七八糟的。。。
demo 这个单词从哪冒出来的?项目名?你没有项目名的话,还http://localhost:8080/demo/hello1.html干嘛?直接http://localhost:8080/hello1.html 不就得了。。