spring mvc 日期转换
http://my.oschina.net/u/2274056/blog/363858
spring mvc 日期转换
http://my.oschina.net/u/2274056/blog/363858
|
1 2 3 4 5 6 7 8 |
Java代码 @InitBinder protected void initBinder(HttpServletRequest request, ServletRequestDataBinder binder) throws Exception { DateFormat df = new SimpleDateFormat("yyyy-MM-dd"); CustomDateEditor editor = new CustomDateEditor(df, false); binder.registerCustomEditor(Date.class, editor); } |

做自己喜欢做的,跟家人同等重要