I implemented a Mongo Repository. In the service I want to create 2 objects and save them to the db. Here is the code:

PanelUser u = new PanelUser();
    u.setUsername("shopadmin");
    u.setPassword("1");
    u.setEnabled(true);
    u.setAuthorities(new ArrayList<SimpleGrantedAuthority>());
    SimpleGrantedAuthority auth = new SimpleGrantedAuthority(
            CommonConstants.Roles.ROLE_SHOP_ADMIN);
    u.getAuthorities().add(auth);
    auth = new SimpleGrantedAuthority(CommonConstants.Roles.ROLE_USER);
    u.getAuthorities().add(auth);

    List<PanelUser> usersToAdd = new ArrayList<PanelUser>();
    usersToAdd.add(u);

    PanelUser u2 = new PanelUser();
    u2.setUsername("accadmin");
    u2.setPassword("1");
    u2.setEnabled(true);
    u2.setAuthorities(new ArrayList<SimpleGrantedAuthority>());
    SimpleGrantedAuthority auth2 = new SimpleGrantedAuthority(
            CommonConstants.Roles.ROLE_ACCOUNT_ADMIN);
    u2.getAuthorities().add(auth2);
    auth2 = new SimpleGrantedAuthority(CommonConstants.Roles.ROLE_USER);
    u2.getAuthorities().add(auth2);

    usersToAdd.add(u2);

    userRepository.save(usersToAdd);

But repository saves only the first object. What can I do for that?

link|improve this question

70% accept rate
What does 'not save' mean? Have you tried raising the WriteConcern on the MongoTemplate to a level which is actually reporting errors? The default one usually doesn't complain about anything and simply returns. – Oliver Gierke Mar 29 at 21:48
feedback

1 Answer

I am assuming that you are using "@DBRef" annotation for the association. The documentation clearly states:

The mapping framework does not handle cascading saves.

Please see 7.3.3. Using DBRefs

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.