Spring Boot - Request and Response Handling
What is wrong with this mapping?
@RequestMapping(path = "/data", method = "POST")
public String saveData() {
return "Saved";
}