Hard
Assuming that the content of the request received is functionally invalid (ex: missing first name), which response will produce the following code:
@RestController
public class MyController{
@PostMapping("/users")
public String get(@RequestBody User user){
return user;
}
}