springMVC类型转换,@initBinder使用

本文介绍SpringMVC中的自定义类型转换方法,包括日期和文件类型的自动映射及如何实现复杂对象如集合类型的转换。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

http://jwlsky.iteye.com/blog/1890676

 

 

1:代码实例

Java代码 复制代码 收藏代码
  1. @InitBinder 
  2. public void initBinder(WebDataBinder binder) { 
  3.  
  4.  
  5.     SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd"); 
  6.     dateFormat.setLenient(false); 
  7.     binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true)); 
  8.  
  9.  
  10.     binder.registerCustomEditor(SystemInfo.class, new PropertyEditorSupport() { 
  11.  
  12.         @Override 
  13.         public void setAsText(String text) throws IllegalArgumentException { 
  14.             if (!StringUtils.hasText(text)) { 
  15.                 return
  16.             } 
  17.             { 
  18.                 Long systemInfoId = Long.valueOf(text); 
  19.                 SystemInfo systemInfo = systemInfoService.findById(systemInfoId); 
  20.                 setValue(systemInfo); 
  21.             } 
  22.         } 
  23.     }); 
  24.  
  25.     binder.registerCustomEditor(Category.class, new PropertyEditorSupport() { 
  26.  
  27.         @Override 
  28.         public void setAsText(String text) throws IllegalArgumentException { 
  29.             if (!StringUtils.hasText(text)) { 
  30.                 return
  31.             } else
  32.                 Long categoryId = Long.valueOf(text); 
  33.                 Category category = categoryService.findById(categoryId); 
  34.                 setValue(category); 
  35.             } 
  36.         } 
  37.     }); 
    @InitBinder
    public void initBinder(WebDataBinder binder) {


        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
        dateFormat.setLenient(false);
        binder.registerCustomEditor(Date.class, new CustomDateEditor(dateFormat, true));


        binder.registerCustomEditor(SystemInfo.class, new PropertyEditorSupport() {

            @Override
            public void setAsText(String text) throws IllegalArgumentException {
                if (!StringUtils.hasText(text)) {
                    return;
                }
                {
                    Long systemInfoId = Long.valueOf(text);
                    SystemInfo systemInfo = systemInfoService.findById(systemInfoId);
                    setValue(systemInfo);
                }
            }
        });

        binder.registerCustomEditor(Category.class, new PropertyEditorSupport() {

            @Override
            public void setAsText(String text) throws IllegalArgumentException {
                if (!StringUtils.hasText(text)) {
                    return;
                } else {
                    Long categoryId = Long.valueOf(text);
                    Category category = categoryService.findById(categoryId);
                    setValue(category);
                }
            }
        });
    }

Html代码 复制代码 收藏代码
  1.             <form:form modelAttribute="categoryEditForm" id="categoryForm" method="post" action="saveOrUpdate.do"> 
  2.               
  3.             <form:hidden path="category.objectId" /> 
  4.             <input type="hidden" name="category.parent" value="${categoryEditForm.category.parent.objectId}"/> 
  5.             <input type="hidden" name="category.systemInfo" value="${categoryEditForm.category.systemInfo.objectId }"/> 
  6.               
  7.             <div class="area"> 
  8.                 <div class="areaTitle"> 
  9.                     <div class="inner"> 
  10.                         <label>Category Information Form</label> 
  11.                         <div class="clear"></div> 
  12.                     </div> 
  13.                 </div> 
  14.             </div> 
  15.               
  16.             <div class="areaBody"> 
  17.     <table class="formTable"> 
  18.                     <tbody> 
  19.                         <tr> 
  20.                 <td colspan="4"> 
  21.                     <span class="button"><span><a href="javascript:sumbit();" class="btnSave">Submit</a></span></span> 
  22.                 </td> 
  23.             </tr>   
  24.             <tr> 
  25.                 <td colspan="4">&nbsp;</td> 
  26.             </tr> 
  27.             <tr> 
  28.                 <td align="right">Parent Category Name:</td> 
  29.                 <td colspan="3"><form:input path="category.parent.name.fullName" readonly="true" id="parentCategory" cssClass="input readOnly" /></td>                                          
  30.             </tr> 
  31.             <tr> 
  32.                 <td align="right">Current Category Name:</td> 
  33.                 <td><form:input path="category.name.fullName" id="categoryName" cssClass="input"/></td> 
  34.                 <td align="right">description:</td> 
  35.                 <td><form:input path="category.description" id="description" cssClass="input"/></td> 
  36.             </tr> 
  37.                     </tbody> 
  38.                         </table> 
  39.             </div> 
  40.               
  41. </form:form> 

2、实例2

spring mvc的表单类型转换(custom property editor)

9人收藏此文章, 我要收藏发表于7个月前(2012-10-28 14:14) , 已有 329次阅读 ,共 1个评论

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.class, new 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.class, new 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上。

RoleEditor可以简化成
public class RoleEditor extends PropertyEditorSupport {
  @Override
  public void setAsText(String text) throws IllegalArgumentException {
    if (text != null) {
      Role role = new Role();
      role.setId(Long.valueOf(text));
      setValue(role);
    } else {
      setValue(null);
    }
  }
}
保存时只用了id值,没有必要去数据库再查找一次

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值