摘要: @GetMapping(value = "/hello/{id}")//需要获取Url=localhost:8080/hello/id中的id值 public String sayHello(@PathVariable("id") Integer id){ return "id:"+id; } @GetMapping(value="/hello/{... 阅读全文
posted @ 2019-03-27 16:57 huanghaunghui 阅读(193) 评论(0) 推荐(0) 编辑