我想更新一个实体,该实体具有其他实体的一对多List集合。调用处理程序方法时,验证似乎不会在集合上运行。我已经阅读了文档,并搜索了stackoverflow,但没有找到任何有用的东西。
型号:
@Entity
public class Employee {
@Id
@GeneratedValue
private int employeeId;
@NotEmpty
private String name;
@Min(value=18)
private int age;
@OneToMany(mappedBy="parent",cascade=CascadeType.ALL)
private List<Child> children;
//getters,setters
}
@Entity
public class Child {
@Id
@GeneratedValue
private int childId;
@Column(nullable=false)
@NotNull
@Size(min=1,message="Child's name must not be empty")
private String childName;
@Max(value=18)
private Integer age;
@ManyToOne
@JoinColumn(name="employeeId")
private Employee parent;
//getters,setters
}
在控制器中:
@RequestMapping(value = { "/edit/{id}" }, method = RequestMethod.POST)
private String update(@PathVariable int id, ModelMap model, @Valid Employee employee, BindingResult result) {
if (result.hasErrors()) {
return "employee/edit";
}
employeeDao.merge(employee);
return "redirect:../list";
}
验证适用于Employee bean的简单属性,但不适用于子列表中的元素。
如何解决这个问题?
答案 0 :(得分:6)
似乎您应该使用children
注释装饰@Valid
列表,如here所述。
看起来应该是这样的:
@OneToMany(mappedBy="parent",cascade=CascadeType.ALL)
@Valid
private List<Child> children;