写了一个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。
网友评论