spring3 mvc interceptor example
-- 작성중 --- controller @RequestMapping(value = "/ex01", method = RequestMethod.GET) public String ex01(Locale locale, Model model) { logger.info("Ex01 Welcome home! the client locale is "+ locale.toString()); Date date = new Date(); DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, locale); String formattedDate = dateFormat.format(date); model.addAttribute("..