Spring Boot - Messaging
Consider this Spring Boot REST controller method:
Employee class has private fields 'name' and 'age' with public getters. What JSON will be returned?
@GetMapping("/employee")
public Employee getEmployee() {
return new Employee("Bob", 25);
}Employee class has private fields 'name' and 'age' with public getters. What JSON will be returned?
