Spring Boot - Request and Response Handling
Consider this controller method:
What error will occur if a client calls
@GetMapping("/books/{bookId}")
public String getBook(@PathVariable int bookId, @RequestParam int page) {
return "Book: " + bookId + ", Page: " + page;
}What error will occur if a client calls
/books/abc?page=2?