@InitBinder的使用

转载地址:

http://my.oschina.net/uniquejava/blog/85727


spring mvc的表单类型转换太强大了,目前用到了两个简单的,

一个是将表单中的file自动映射成byte[],这样文件上传(如果使用blob)就无需写任何代码了。

另一个是将表单中的yyyy-MM-dd格式映射成java.util.Date,

假设User.java中有如下这两种特殊的属性:

1 public class User implements Serializable{
2     private Date birth;
3     private byte[] icon;
4 }


注册这两种属性编辑器只需在Controller中定义如下这样一个initBinder方法:

01 @Controller("userController")
02 @RequestMapping(value = "/user")
03 public class UserController {
04     @RequestMapping(value = "create", method = RequestMethod.POST)
05     public String create(@ModelAttribute("user") User user,
06             RedirectAttributes redirectAttributes) {
07         userService.createUser(user);
08         redirectAttributes.addFlashAttribute("message""create success!");
09  
10         return SUCCESS;
11     }
12      
13     @InitBinder
14     protected void initBinder(
15             WebDataBinder binder) throws ServletException {
16         binder.registerCustomEditor(byte[].class,
17                 new ByteArrayMultipartFileEditor());
18          
19         SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
20                 dateFormat.setLenient(false);
21                 binder.registerCustomEditor(Date.classnew CustomDateEditor(dateFormat, false));
22     }
23 }


ByteArrayMultipartFileEditor和CustomDateEditor都是spring直接提供的。可以参考这两个类的源码,

高级的自定义的还没用过,等用到的时候再补充到这里(2012-11-04补充)

今天终于用到了自定义的Editor,我现在有一个User对象,它有一个Set<Role> roles集合。

1 public class User implements Serializable{
2     public Set<Role> roles = new HashSet<Role>();
Role有id和name属性,


1 public class Role implements Serializable {
2     private Long id;//
3     private String name;//


UserController如下

1 @RequestMapping(value = "create", method = RequestMethod.GET)
2 public String createForm(ModelMap model) {
3     model.addAttribute("roleList", roleService.findAllRoles());
4     User user = new User();
5     model.addAttribute(user);
6     return "user/user_new";
7 }
我的user_new.jsp如下: 
1 <div class="control-group">
2     <label class="control-label" for="roles">角色:</label>
3     <div class="controls">
4         <sf:checkboxes path="roles" items="${roleList }" itemValue="id" itemLabel="name"/>
5     </div>
6 </div>
用户在页面上check一个或多个角色,提交form,这时我们期望user对象中的roles集合能自动绑定用户选择的值,但是提交到服务器上的数据其实是一组roleId,我们需要在自定义的PropertyEditor中将其转成Role对象.


可以像这样定义RoleEditor.java

01 public class RoleEditor extends PropertyEditorSupport {
02     private RoleService roleService;
03  
04     public RoleEditor(RoleService roleService) {
05         this.roleService = roleService;
06     }
07  
08     @Override
09     public void setAsText(String text) throws IllegalArgumentException {
10         if (text != null) {
11             Role role = roleService.findRoleById(Long.valueOf(text));
12             setValue(role);
13         else {
14             setValue(null);
15         }
16     }
17 }
并在UserController中的initBinder方法中注册该编辑器 
1 @InitBinder
2 protected void initBinder(
3         WebDataBinder binder) throws ServletException {
4     //@see http://forum.springsource.org/showthread.php?59612-Service-injection-amp-PropertyEditor
5     binder.registerCustomEditor(Role.classnew RoleEditor(roleService));
6 }
这时在UserController的create方法中取得的User对象就是已经绑定了roles的了
1 @RequestMapping(value = "create", method = RequestMethod.POST)
2 public String create(@ModelAttribute("user") User user,
3         RedirectAttributes redirectAttributes) {
4     userService.createUser(user);
5     redirectAttributes.addFlashAttribute("message""create success!");
6  
7     return SUCCESS;
8 }


值得注意的是,你必须要覆写Role的equals和hashCode方法,不然当你进入修改页面时,user的role属性不会自动的check上。

这里有人提相同的问题:

http://stackoverflow.com/questions/7421346/spring-binding-listobject-to-formcheckboxes

还有这里

http://stackoverflow.com/questions/8700339/spring-mvc-usage-of-formcheckbox-to-bind-data


参考:

http://www.mkyong.com/spring-mvc/spring-mvc-failed-to-convert-property-value-in-file-upload-form/

http://linkedjava.blogspot.com/2011/06/spring-controller-with-date-object.html(需要FQ)

http://forum.springsource.org/showthread.php?59612-Service-injection-amp-PropertyEditor


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值