假设我在MongoDB中有一个存储员工列表的实体。
@Entitiy
public class EmployeeList{
@Embedded
List<Employee> employeeList;
}
Employee是一个具有一些属性的抽象类。
public abstract class Employee{
String name;
String emailId;
}
有不同类型的员工 - Developer,Designer,HumanResource
class Developer extends Employee{
String githubProfile;
}
class Designer extends Employee{
String portfolio;
}
class HumanResource extends Employee{
String department;
}
如果mongo包含开发人员,设计人员和人力资源人员的列表,Morphia可以将他们映射到相应的类吗? 例如,如果db具有以下数据 -
[{'name':'p1', 'emailId':'p1@x1", 'portfolio':'http://abc.co'},
{'name':'p2', 'emailId':'p2@x1", 'department':'finance'},
{'name':'p3', 'emailId':'p3@x1", 'githubProfile':'http://github.com/p3'}]
当Morphia将此集合映射到EmployeeList
实体时,如何确保它们映射到相应的类?
答案 0 :(得分:1)
当您将员工添加到列表中时,您可能会执行以下操作。
employeeList.add(new Developer(...))
employeeList.add(new Designer(...))
employeeList.add(new HumanResource(...))
然后将实体保存在morphia中,它应该可以工作。
PS:我没试过这个。