Spring Boot - Messaging
Given the following Spring Boot controller method, what will be the JSON output when accessing
/user?
public record User(String name, int age) {}
@GetMapping("/user")
public User getUser() {
return new User("Alice", 30);
}