我是靠谱客的博主 善良大象,最近开发中收集的这篇文章主要介绍springMvc中的@InitBinder,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

这个主要是讲解一下自己遇到的@InitBinder的问题,这个@InitBinder实际上就是在springmvc中,当表单向后台传递日期类型的数据时,由于springmvc不能自动在后台转化Date类型的参数(int可以自动转化成String等等),所以用到了@InitBinder。实际上客户端向服务器传递参数都是通过request.getparameter来传递的,传递到后台实际上是字符串,这时我们就需要一个转化工具WebDataBinder,将字符串转化成我们所需要的类型。
我们不必自己创建WebDataBinder,我们只需要想他注册参数类型对应的属性编辑器就可以了PropertyEditor。
具体代码如下
` @InitBinder
public void initBinder(WebDataBinder binder) {
SimpleDateFormat dateFormat = new SimpleDateFormat(“yyyy-MM-dd”);
dateFormat.setLenient(false); //禁止自动转化日期
binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, false));

    } `

最后

以上就是善良大象为你收集整理的springMvc中的@InitBinder的全部内容,希望文章能够帮你解决springMvc中的@InitBinder所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部