February 2017
Intermediate to advanced
1023 pages
24h 11m
English
|
Questions |
Answers |
|
If you imagine a web application called Library with the following request mapping on a Controller class level and in the method level, which is the appropriate request URL to map the request to the @RequestMapping("/books")
public class BookController {
...
@RequestMapping(value = "/list")
public String books(Model model) {
...
|
1. |
|
Similarly, suppose we have another handler method called @RequestMapping
public String details(Model model) {
...
|
2. |
|
If we have a web application called |
Read now
Unlock full access