Spring Boot - REST Controllers
Identify the error in this method signature:
@PostMapping("/add")
public void addUser(@RequestBody String userJson) {
User user = new User();
// missing JSON parsing
}