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?
WriteConcernon theMongoTemplateto 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