展示查询搜索
// 根据姓名分页查询用户
@GetMapping("/getUsersByName")
public IPage<User> getUsersByName(@RequestParam(defaultValue = "1") Long current,
@RequestParam(defaultValue = "2") Long size,
@RequestParam(required = false) String name) {
// 构建分页对象
Page<User> page = new Page<>(current, size);
// 调用服务方法进行分页查询
return userService.getUsersByName(page, name);
}
Postman路径:http://localhost:8080/test/user/getUsersByName2?current=1&size=3&name=z
根据id展示数据
@GetMapping("/{userId}")
public R<User> getUserById(@PathVariable Long userId) {
return userService.getUserById(userId);
}
postman测试:http://localhost:8080/test/user/1
根据id删除数据
// 删除用户
@DeleteMapping("/{userId}")
public R<String> deleteUser(@PathVariable Long userId) {
return userService.deleteUser(userId);
}
PostMan测试: http://localhost:8080/test/user/1
根据id更新数据
// 更新用户信息
@PutMapping("/updateUser")
public R<String> updateUser(@RequestBody User user) {
return userService.updateUser(user);
}
postman测试:http://localhost:8080/test/user/updateUser
添加数据
// 新增用户
@PostMapping("/addUser")
public R<String> addUser(@RequestBody User user) {
return userService.addUser(user);
}
postman测试: http://localhost:8080/test/user/addUser文章来源:https://www.toymoban.com/news/detail-825823.html
文章来源地址https://www.toymoban.com/news/detail-825823.html
到了这里,关于Java,SpringBoot项目中,Postman的测试方法。的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!