目录
@PostMapping、@GetMapping、@PutMapping、 @DeleteMapping
@PathVariable
作用:在RESTful风格的URL中获取占位符的值
位置:方法参数前
属性:
1、value:获取哪个占位符的值作为参数值,如果占位符和参数名相同,可以省略该属性。
@Controller @RequestMapping("/student")
目录
@PostMapping、@GetMapping、@PutMapping、 @DeleteMapping
作用:在RESTful风格的URL中获取占位符的值
位置:方法参数前
属性:
1、value:获取哪个占位符的值作为参数值,如果占位符和参数名相同,可以省略该属性。
@Controller @RequestMapping("/student")