2

我有一个表格,其中填充了数据库中的数据。在开始描述我的问题之前,一些片段:

一类:

// @Entity for areas
public class Area {
@Id
@Column(name = "area")
private String area;

@Column(name = "deleted")
private boolean deleted;

getter/setter
}

二等舱

// @Entity for employees
public class Employee {
@Id
@GeneratedValue
@Column(name = "ID")
private long id;

@ManyToOne
@JoinColumn(name = "area")
private Area area;

@Column(name = "name")
private String name;

getter/setter

调用EmployeeController中的方法向jsp返回数据

protected String createDialog( @PathVariable("id") Long id, Model model ){
    Employee employee = id == 0 ? new Employee() : employeeService.findById(id);
    //return employee
    model.addAttribute("employeeModel", employee );
 //add data needed to create dropdown holding areas
    //areaService.findAll returns a List<Area>
    model.addAttribute("areas", areaService.findAll( 
                new Sort( 
                    Sort.Direction.ASC,
                    "area"
                    )
                ));
    return "employees/dialogUpdateEdit";
}

jsp,显示区域的下拉列表,如果没有返回新员工,则显示已知数据

<form:form action="employees/ajax" commandName="employeeModel" method="POST" id="createForm">
    <table class="fullWidth">
        <tr>
            <td>Area</td>
            <td>
                <form:select path="area" items="${areas}" class="fullWidth">
                </form:select>
            </td>
        </tr>
        <tr>
            <td>Employee Name</td>
            <td><form:input path="name" class="fullWidth"/></td>
        </tr>
        <tr>
            <td colspan="2">
                <input type="submit" value="Save Changes" id="btnSaveEmployee" class="fullWidth" />
            </td>
        </tr>
    </table>

    <!-- adding hidden field to hold id on update -->
<form:hidden path="id" />   

</form:form>

控制器方法进行验证并返回一些错误或不

@RequestMapping(value = "/ajax", method = RequestMethod.POST)
protected @ResponseBody ValidationResponse createOrUpdate(
        @Validated @ModelAttribute("employeeModel") Employee employee,
        BindingResult bindingResult) {

    if (!bindingResult.hasErrors()) {
        employeeService.createOrUpdate(employee);
    }

    return validate(employee, null, bindingResult);
}

对于问题:这一切都很好,下拉列表被填充,数据被填充到输入中。但是当我点击提交时,我收到以下错误:

java.lang.IllegalStateException:无法将类型 [java.lang.String] 的值转换为属性“区域”所需的类型 [com.whatever.Area]:找不到匹配的编辑器或转换策略

据我了解,表单只是提交“区域”的纯字符串,而不是绑定列表中的对象。

如何让表单提交对象而不是字符串?我的装订有问题吗?

谢谢你的帮助!

4

2 回答 2

1

回答我自己的问题,并希望那个人在不知不觉中帮助我的人获得很多学分;)

我必须添加一个自定义活页夹......以前从未听说过,所以我先问了很长一段路。

这个链接有我发现的关于这个主题的最好和最短的教程,因为我知道我在找什么: http ://empire5.com/development/binding-a-custom-object-in-spring-3/

于 2012-08-01T20:53:24.650 回答
0

我认为选择你可以试试这种类型的代码

<select name="area" id="area" >      
  <option value="${areas}">${areas}</option>
</select>
于 2012-08-01T19:03:57.747 回答