PathVariable這有什么作用?
@PathVariable是用來對指定請求的URL路徑里面的變量 eg: Java代碼 @RequestMapping(value = "form/{id}/apply", method = {RequestMethod.PUT, RequestMethod.POST}) {id}在這個請求的URL里就是個變量,可以使用@PathVariable來獲取 @PathVariable和@RequestParam的區別就在于:@RequestParam用來獲得靜態的URL請求入參