I am not very experienced with Multithreading in Java. What I want is to set a lock for a code block. In my case i want to avoid optimistic lock exceptions, while doing some synchronization for a certain user. The method replicateUser can be called by multiple threads for the same user. But it is not guaranteed, that authenticatedUser is always the same identical object.
So how can I effeciently lock this section? What I don't want is, that the section is locked for all threads, but only for those with the same user. Can I put a lock on string objects as shown on the example below using getUserName()?
private void replicateUser(AuthenticatedUser authenticatedUser) {
//
// How to synchronize the following block correctly?
//
synchronized (authenticatedUser.getUserName()) {
User dbUser = userRepository.findOne(authenticatedUser.getUserName());
if (!checkIsUserReplicated(authenticatedUser, dbUser)) {
doReplication(dbUser);
}
}
}
synchronizedblock to make it more clear – fischermatte Feb 4 at 17:46