RequestParam在休息Web应用程序中的实用程序

时间:2017-09-13 13:59:48

标签: spring spring-restcontroller

我在休息体系结构中使用spring boot,在rest spring应用程序中使用requestparam是否仍然有用?

@GetMapping
public ResponseEntity<Page<Cars>> getCars(Integer carId){
 ....
}

@GetMapping
public ResponseEntity<Page<Cars>> getCars(@RequestParam(value = "carId", required = false)  Integer carId){
 ....
}

0 个答案:

没有答案