(@RequestParam(required=false, defaultValue="1") int year)
| 97 | } |
| 98 | |
| 99 | @RequestMapping("/requestParam11") |
| 100 | public String main11(@RequestParam(required=false, defaultValue="1") int year) { |
| 101 | // http://localhost/ch2/requestParam11 ---->> year=1 |
| 102 | // http://localhost/ch2/requestParam11?year ---->> 400 Bad Request, nested exception is java.lang.NumberFormatException: For input string: "" |
| 103 | System.out.printf("[%s]year=[%s]%n", new Date(), year); |
| 104 | return "yoil"; |
| 105 | } |
| 106 | } // class |
nothing calls this directly
no outgoing calls
no test coverage detected