Spring Boot集成Rest简单例子

@RestController public class RestTestController { @RequestMapping(value = "/rest_test/{id}") public Integer restTest(@PathVariable Integer id){ return id; } }
相关文章
相关标签/搜索