I'd appreciate help in understanding why my application fails to find an entity, even though it exists in the database; I believe the issue is related to concurrent writing/reading. I'm using jpa2/hibernate 4 and spring 3.
I have a method that creates a user then sends the id, as a json object message, to a message queue where the user is further processed. Problem occurs when the message handler (UserProcessor.class) attempts to find the user (see below).
Registration.class
@Transactional
public Response createUser(String firstName, String lastName) {
User tmpUser = new User(firstName, lastName);
User savedUser = this.em.merge(tmpUser);
this.em.flush();
if (savedUser != null) {
processUser(savedUser.getId()); // message sent to queue.
} else {
// Throw exception...
}
}
UserProcessor.class
@Transactional(rollbackFor={javax.ws.rs.WebApplicationException.class})
public void processUser(Long id) {
User user = this.em.find(User.class, id); // No user entity is found, "user" is null.
if (user == null) {
// throw exception
}
...
}
public void processUser(final User aUser)? – nico_ekito Mar 1 '12 at 20:50