http://localhost:8080/emp/1
有以上请求,我们controller要怎么获取请求中传递的参数1呢?
通过PathVariable注解,如下:
@DeleteMapping("/emp/{id}")
public String deleteEmp(@PathVariable("id") Integer id){ }
2024-03-04 15:24:35
http://localhost:8080/emp/1
有以上请求,我们controller要怎么获取请求中传递的参数1呢?
通过PathVariable注解,如下:
@DeleteMapping("/emp/{id}")
public String deleteEmp(@PathVariable("id") Integer id){ }