在Spring Boot中,可以使用@GetMapping
注解来定义处理HTTP GET请求的方法。@GetMapping
注解可以用于类级别和方法级别。
在方法级别,@GetMapping
可以用来指定处理GET请求的URL路径。例如:
@GetMapping("/users")
public List<User> getUsers() {
// 处理获取用户列表的逻辑
}
在类级别,@GetMapping
可以用来指定处理GET请求的公共URL路径。例如:
@RestController
@RequestMapping("/api")
public class UserController {
@GetMapping("/users")
public List<User> getUsers() {
// 处理获取用户列表的逻辑
}
}
在上述示例中,/api/users
路径将映射到getUsers()
方法。
需要注意的是,@GetMapping
只能处理GET请求,如果需要处理其他类型的请求,可以使用@PostMapping
、@PutMapping
、@DeleteMapping
等注解。
关于Spring Boot的更多信息和使用方法,可以参考腾讯云的Spring Boot产品文档:Spring Boot产品介绍。
领取专属 10元无门槛券
手把手带您无忧上云