(@RequestParam(required=true, defaultValue="1") int year)
| 89 | } |
| 90 | |
| 91 | @RequestMapping("/requestParam10") |
| 92 | public String main10(@RequestParam(required=true, defaultValue="1") int year) { |
| 93 | // http://localhost/ch2/requestParam10 ---->> year=1 |
| 94 | // http://localhost/ch2/requestParam10?year ---->> 400 Bad Request, nested exception is java.lang.NumberFormatException: For input string: "" |
| 95 | System.out.printf("[%s]year=[%s]%n", new Date(), year); |
| 96 | return "yoil"; |
| 97 | } |
| 98 | |
| 99 | @RequestMapping("/requestParam11") |
| 100 | public String main11(@RequestParam(required=false, defaultValue="1") int year) { |
nothing calls this directly
no outgoing calls
no test coverage detected