spring中页面传递参数为Date类型自动转换为字符串的方法
Posted mickyliu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring中页面传递参数为Date类型自动转换为字符串的方法相关的知识,希望对你有一定的参考价值。
@InitBinder
public void initBinder(WebDataBinder binder){
SimpleDateFormat sdf =new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
binder.registerCustomEditor(Date.class, new CustomDateEditor(sdf, true));
以上是关于spring中页面传递参数为Date类型自动转换为字符串的方法的主要内容,如果未能解决你的问题,请参考以下文章
spring mvc关于jsp页面传递到controller层参数类型转换(格式化)的学习记录--2018年1月