(@RequestParam(required=false, defaultValue="1") String year)
| 47 | } |
| 48 | |
| 49 | @RequestMapping("/requestParam5") |
| 50 | public String main5(@RequestParam(required=false, defaultValue="1") String year) { |
| 51 | // http://localhost/ch2/requestParam5 ---->> year=1 |
| 52 | // http://localhost/ch2/requestParam5?year ---->> year=1 |
| 53 | System.out.printf("[%s]year=[%s]%n", new Date(), year); |
| 54 | return "yoil"; |
| 55 | } |
| 56 | |
| 57 | // ======================================================================= |
| 58 |
nothing calls this directly
no outgoing calls
no test coverage detected