Spring Boot - REST Controllers
Consider this method:
What will be the output when the URL is
@GetMapping("/items")
public String getItem(@RequestParam(defaultValue = "1") int page) {
return "Page number: " + page;
}What will be the output when the URL is
/items without any query parameters?