Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why use returned instance after save() on Spring Data JPA Repository?

Here is the code:

@Repository public interface AccountRepository extends JpaRepository<Account, Long> {} 

JpaRepository from Spring Data JPA project.

Here is the testing code:

public class JpaAccountRepositoryTest extends JpaRepositoryTest {     @Inject     private AccountRepository accountRepository;      @Inject     private Account account;      @Test     @Transactional     public void createAccount() {         Account returnedAccount = accountRepository.save(account);          System.out.printf("account ID is %d and for returned account ID is %d\n", account.getId(), returnedAccount.getId());     } } 

Here is the result:

account ID is 0 and for returned account ID is 1 

Here is from CrudReporsitory.save() javadoc:

Saves a given entity. Use the returned instance for further operations as the save operation might have changed the entity instance completely.

Here is the actual code for SimpleJpaRepository from Spring Data JPA:

 @Transactional     public T save(T entity) {              if (entityInformation.isNew(entity)) {                     em.persist(entity);                     return entity;             } else {                     return em.merge(entity);             }     } 

So, the question is why do we need to use the returned instance instead of the original one? (yes, we must do it, otherwise we continue to work with detached instance, but why)

The original EntityManager.persist() method returns void, so our instance is attached to the persistence context. Does some proxy magic happens while passing account to save to repository? Is it the architecture limitation of Spring Data JPA project?

like image 827
Aliaksandr Kazlou Avatar asked Dec 24 '11 14:12

Aliaksandr Kazlou


People also ask

What does JPA save method return?

JPA's persist method returns void and Hibernate's save method returns the primary key of the entity.

What does save method of CrudRepository return?

The save() method returns the saved entity, including the updated id field.

What is difference between save and saveAndFlush in JPA?

The saveAndFlush() Method Unlike save(), the saveAndFlush() method flushes the data immediately during the execution. This method belongs to the JpaRepository interface of Spring Data JPA.

When should I use saveAndFlush and save?

Save and saveAndFlush both can be used for saving entities. They both are both belong to the Spring data library. save may or may not write your changes to the DB straight away. When we call saveAndFlush system are enforcing the synchronization of your model state with the DB.


2 Answers

The save(…) method of the CrudRepository interface is supposed to abstract simply storing an entity no matter what state it is in. Thus it must not expose the actual store specific implementation, even if (as in the JPA) case the store differentiates between new entities to be stored and existing ones to be updated. That's why the method is actually called save(…) not create(…) or update(…). We return a result from that method to actually allow the store implementation to return a completely different instance as JPA potentially does when merge(…) gets invoked.

Also, persistence implementations actually capable of dealing with immutable objects (i.e. not JPA) might have to return a fresh instance if the actual implementation requires populating an identifier or the like. I.e. it's generally wrong to assume that the implementation would just consume the entity state.

So generally it's more of an API decision to be lenient (permissible, tolerant) regarding the actual implementation and thus implementing the method for JPA as we do. There's no additional proxy massaging done to the entities passed.

like image 145
Oliver Drotbohm Avatar answered Oct 08 '22 04:10

Oliver Drotbohm


You missed the second part: if the entity isn't new, merge is called. merge copies the state of its argument into the attached entity with the same ID, and returns the attached entity. If the entity isn't new, and you don't use the returned entity, you'll make modifications to a detached entity.

like image 37
JB Nizet Avatar answered Oct 08 '22 04:10

JB Nizet