当前位置:  开发笔记 > 后端 > 正文

Spring MVC表单:选择Tag,多个选项不正确绑定?

如何解决《SpringMVC表单:选择Tag,多个选项不正确绑定?》经验,为你挑选了1个好方法。

我正在尝试创建一个表单来编辑现有的数据库行.我正在使用Spring MVC表单标记将html自动绑定到表单后备对象.该行与另一个表有多对多的关系,我试图使用以下形式表示多个选择框:select tag;


    

我正在使用Hibernate进行持久化,因此该关系表示为Bundle pojo中的HashSet.

 private Set rules = new HashSet(0);

如果没有页面上的选择框,对象将正确更新到数据库,但是使用选择框,对象将不会更新到数据库,并且我在log4j日志中收到此错误,请注意此错误不会导致异常,它只在日志中可见;

DEBUG org.springframework.web.servlet.mvc.SimpleFormController.processFormSubmission(SimpleFormController.java:256) - Data binding errors: 1

无论我取消选择框内的项目,都会发生这种情况,整个表单拒绝正确提交.谁能帮我?

我知道如何将集合属性绑定到Spring MVC中的表单,这与此问题类似,遗憾的是,没有任何建议对我的问题有用.



1> kgiannakakis..:

问题在于提交表单.Spring无法绑定命令的对象,因此它不提交表单,而是将您重定向到formView.

成功执行绑定后,您将看到此消息:

No errors -> processing submit

要解决您的问题,您需要在控制器中注册CustomCollectionEditor.(见此链接).它会是这样的:

protected void initBinder(HttpServletRequest request, ServletRequestDataBinder binder) throws Exception
{   
  binder.registerCustomEditor(Set.class, "rules", new CustomCollectionEditor(Set.class)
  {
    protected Object convertElement(Object element)
    {
        String name = "";

        if (element instanceof String)
            name = (String) element;

        return name != null ? new Rule(name) : null;
    }
  });
}

推荐阅读
mobiledu2402851173
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有