我有一个应该绑定到包含很多子节点的复杂对象的表单,每次在加载此表单之前我必须在一个只有很多新语句并调用setter方法的方法中初始化所有子对象,I必须为许多表单和其他复杂对象重复此场景
有没有比initializeEmployee方法更好的策略?
例如:
@Entity
public class Employee {
Integer Id;
Contract contract;
Name name;
List
编辑:
根据以下答案,似乎没有最佳答案.但是,我可以使用Entity构造函数或Factory Design Pattern.
但是这两个解决方案都没有解决我在使用required和Optional字段初始化所有字段策略时的其他问题.
例如:
如果我有必要的Name(即如果Name对象属性为空,Employee实体将不会持久化,另一方面,Contract实体是可选的.我不能将空的Contract对象持久保存到数据库,所以我必须使它在持久化之前先进行null,然后在持久性之后重新初始化它,如下所示
// Set Contract to null if its attributes are empty
Contract contract = employee.getContract()
if(contract.getTelephoneNum().isEmpty && contract.getEmail().isEmpty() && contract.getAddress().isEmpty()){
empolyee.setContract(null);
}
employeeDAO.persist(employee);
// reinitialize the object so it could binded if the the user edit the fields.
employee.setContract(new Contract());
另一种方法是,如果你不喜欢添加构造函数,那就是添加一个静态工厂方法来实现你的bean,它看起来像initializeEmployee()但有潜在的参数并返回一个Employee对象. http://en.wikipedia.org/wiki/Factory_method_pattern
同样,您也可以实例化您的集合,因为对于空集合可能没有任何意义(但是有一个用于空集合).
您可以向实体添加行为,不要锁定在Anemic Domain Model中,这被Martin Fowler称为反模式http://www.martinfowler.com/bliki/AnemicDomainModel.html
编辑
我看到你正在使用dao.persist(实体):你可能正在使用JPA.如果是这样,也许最好不要修改你的对象图(在正面)并为Employee添加一个EntityListener(在持久层中):这里是Hibernate EntityListener的链接(它是一个JPA特性,所以如果你是使用另一个框架不要担心)http://docs.jboss.org/hibernate/entitymanager/3.5/reference/en/html/listeners.html
使用EntityListener,您可以在持久性和之后添加小的“aop like”操作.这将允许您不处理域和前层上的空值,并确保每个实体都适合任何情况(更好的验证).
在PrePersist中:你们添加你的代码来检查空值(可能在域类上使用自定义方法“isEmpty()”)并在需要时使字段无效.在PostPersist中添加新对象.