美文网首页
Whitelabel Error Page

Whitelabel Error Page

作者: 处下0512 | 来源:发表于2018-12-06 17:03 被阅读9次

写了一个Spring boot的demo,测试时发现报错,网上搜了很多,最后找到答案是demo示例挖的坑

@RestController

public class HelloController {

@RequestMapping(value ="/hello", method = RequestMethod.GET)

public Stringsay() {

return "Hello, Spring Boot!";

    }

}

最终的访问路径应该是http://localhost:8080/hello,而不是http://localhost:8080/demo/hello。

相关文章

网友评论

      本文标题:Whitelabel Error Page

      本文链接:https://www.haomeiwen.com/subject/awwocqtx.html