[email protected]注解可以使用如下参数:
1,params:例如params={‘username‘,"age!=100"}表示需要usernmame并且age 属性不能等于100
2. headers:为请求头 确定他的请求头是啥的时候才能访问headers={"Accept-lanuage=us,ZN"}
[email protected]("id")实现REST风格的一步,可以将目标方法的参数中
1 @GetMapping("/test/{id}") 2 public String test(@PathVariable("id") String id){ 3 return null; 4 }
3.REST风格
时间: 2024-11-05 06:03:43