背景

在Web项目中,太多需要提交表单或者在请求URL中添加参数信息的操作,无论是前者还是后者,SpringMVC都将每个元素当做String来处理, 如果前台传入格式化为字符串的日期或这数值类型的时候就会报错(在SpringMVC中,bean中定义了Date,double等类型,如果没有做任何处理的话,日期以及double都无法绑定),我们手动来强制转型很是麻烦,SpringMVC 提供的@initbinder 就是解决这个问题

@initbinder

在我的项目中是在BaseController中增加方法initBinder,并使用注解@InitBinder标注,那么spring mvc在绑定表单之前,都会先注册这些编辑器, Spring自己提供了大量的实现类,诸如CustomDateEditor ,CustomBooleanEditor,CustomNumberEditor等许多,基本上够用, 当然我们也可以自己来写这些编辑器.

自定义编辑器

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import org.springframework.beans.propertyeditors.PropertiesEditor;  

public class DoubleEditor extends PropertiesEditor {
@Override
public void setAsText(String text) throws IllegalArgumentException {
if (text == null || text.equals("")) {
text = "0";
}
setValue(Double.parseDouble(text));
}

@Override
public String getAsText() {
return getValue().toString();
}
}

类似Long、Float等都可以这样写,然后将这些自定义的编辑器或Spring自带的编辑器放到BaseController中带有@initbinder的方法中注册就好.

1
2
3
4
5
6
7
8
9
10
@InitBinder    
protected void initBinder(WebDataBinder binder) {
binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"), true));
binder.registerCustomEditor(int.class, new CustomNumberEditor(int.class, true));
binder.registerCustomEditor(int.class, new IntegerEditor());
binder.registerCustomEditor(long.class, new CustomNumberEditor(long.class, true));
binder.registerCustomEditor(long.class, new LongEditor());
binder.registerCustomEditor(double.class, new DoubleEditor());
binder.registerCustomEditor(float.class, new FloatEditor());
}

当然我们也可以将自定义的编辑器直接继承 PropertyEditorSupport, 因为:

1
public class org.springframework.beans.propertyeditors.PropertiesEditor extends java.beans.PropertyEditorSupport {  	

参考

非常感谢一下两位作者贡献整理的文章:

  1. spring mvc使用@InitBinder 标签对表单数据绑定
  2. @InitBind来解决字符串转日期类型


加我微信,咱们交流技术与思想,共同成长


 评论



Copyright 2018-2019 Tanθ's Blog   |   辽ICP备19017651号-1   |     站点总字数: 277.7k 字   |   载入天数...载入时分秒...   |  站点地图   |  站长统计
  总访问量:  次  总访问人数:  人

博客内容遵循 署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0) 协议