本文主要是介绍springmvc封装date类型,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
springMVC封装Date类型的时候默认只能封装"yyyy/MM/dd"格式的字符串.而我接收的字符串是"yyyy-MM-dd".
在网上找一直没找到解决的方案.后来发现有现成的方案.
//date格式转换@InitBinder public void initBinder(WebDataBinder binder) throws Exception { SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd"); CustomDateEditor editor = new CustomDateEditor(df, false); binder.registerCustomEditor(Date.class, editor); }
只需在controller里面加一段这样的代码就可以解决了.暂时还没研究原理.先用着
这篇关于springmvc封装date类型的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!