Guest User

Untitled

a guest
Oct 16th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. synchronized (MyService.class) {
  2. do {
  3. id = generateId();
  4. } while (myDao.find(id) != null);
  5. sampleObject.setId(id);
  6. myDao.create(sampleObject);
  7. }
  8.  
  9. cassandraOperations.insert(sampleObject);
Add Comment
Please, Sign In to add comment