Spring Boot集成Rest简单例子
@RestController
public class RestTestController {
@RequestMapping(value = "/rest_test/{id}")
public Integer restTest(@PathVariable Integer id){
return id;
}
}
@RestController
public class RestTestController {
@RequestMapping(value = "/rest_test/{id}")
public Integer restTest(@PathVariable Integer id){
return id;
}
}