如何使用Mongotemplate Spring设置嵌套对象

时间:2019-04-28 23:20:29

标签: java mongodb spring-boot mongotemplate

我仍然是mongodb的新手,如果我有一个如下所示的类,并且想要设置一个属性Role(即对象类型属性),该如何实现呢?请检查下面的课程

@Document(collection="User")
public class UserBean {

    @Id
    private String id;

    private String userName;
    private String password;

    private RoleBean role;


}

@Document(collection="Role")
public class RoleBean {

    @Id
    private String id;

    private String roleID;
    private String roleName;


}

我需要设置UserBean的角色属性。那么实现它的最佳方法是什么?谢谢。

1 个答案:

答案 0 :(得分:0)

Spring Mongo Template not saving the list of custom objects to MongoDb,请查看是否已回答该问题,或者该回答满足您的要求。