Spring Boot - API Documentation
Given the code snippet:
What will the
@Operation(summary = "Get user", description = "Returns user details by ID")
@GetMapping("/user/{id}")
public User getUser(@PathVariable String id) { return userService.findById(id); }What will the
@Operation annotation affect?