@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;
}
}
相关文章: