@PathVariable
是SpringMVC
中的注解,用于将HTTP请求的URI路径变量
映射到Controller方法参数
上。
当URL路径中包含占位符(由大括号 {} 包围的部分)时,可以使用此注解来绑定这些动态部分到方法参数。文章来源地址https://www.toymoban.com/news/detail-790932.html
使用样例
获取单个路径变量
# 对应请求示例: GET /users/123
@GetMapping("/users/{userId}")
public User getUserDetails(@PathVariable("userId") Long userId) {
// 根据userId从数据库或其他存储获取用户详细信息
return userService.getUserById(userId);
}
获取多个路径变量
# 对应请求示例: GET /departments/5/employees/10
@GetMapping("/departments/{deptId}/employees/{empId}")
public Employee getEmployeeByDepartment(@PathVariable("deptId") Long deptId, @PathVariable("empId") Long empId) {
return employeeService.getEmployeeByIdAndDeptId(empId, deptId);
}
使用正则表达式约束路径变量
# 对应请求示例: GET /users/john_doe
@GetMapping("/users/{username:[a-zA-Z0-9_]+}")
public User getUserByUsername(@PathVariable("username") String username) {
return userService.getUserByUsername(username);
}
文章来源:https://www.toymoban.com/news/detail-790932.html
到了这里,关于What is `@PathVariable` does?的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!