以Spring MVC形式绑定的对象

时间:2012-04-13 09:52:11

标签: java spring spring-mvc controller

我正在使用Spring MVC开发测试应用程序。 我有一个Person班和一个Group班。每个Person对象都引用一个Group对象。

现在我实现了一个显示Person数据并允许编辑的jsp。在我的表格中,我放了一个选择控件来选择皮尔逊的组:

<sf:select path="group">
    <sf:options items="${groupList}" itemLabel="name" itemValue="id" />
</sf:select>

我在加载页面时显示正确的组,但我无法保存更改,因为在控制器中我只得到代表 id 组的字符串。

所以,我的问题是:如何在我的控制器中获取Group对象而不是其id?

更新 这是我的控制器代码:

@RequestMapping(value = "/details", params = "save", method = RequestMethod.POST)
public String save(@ModelAttribute("person") Person p,
        BindingResult result) {
    this.personManager.savePerson(p);
    return "redirect:/people/details?id=" + p.getId();
}

1 个答案:

答案 0 :(得分:6)

通过扩展PropertyEditorSupport创建您自己的GroupEditor(将正确填充组对象实例)。然后在控制器中绑定它:

@InitBinder
protected void initBinder(WebDataBinder binder)     {
      binder.registerCustomEditor(Group.class, new GroupEditor(groupService));
}

你的实际编辑可能看起来像这样:

public class GroupEditor extends PropertyEditorSupport{

    private final GroupService groupService;

    public GroupEditor(GroupService groupService){
        this.groupService= groupService;
    }

    @Override
    public void setAsText(String text) throws IllegalArgumentException {
      Group group = groupService.getById(Integer.parseInt(text));
      setValue(group);
    }
}

Spring docs