Spring Boot - REST Controllers
Given the controller method:
What will be the output if the URL is
@GetMapping("/search")
public String search(@RequestParam String query) {
return "You searched for: " + query;
}What will be the output if the URL is
/search?query=books?