CrudRepository中不见merge或update的踪影

看CrudRepository接口,进去一看,说好的crud,可是怎么不见merge或update呢?

再一看save注释:

 

Java代码   收藏代码
  1. /** 
  2.      * Saves a given entity. Use the returned instance for further operations as the save operation might have changed the 
  3.      * entity instance completely. 
  4.      *  
  5.      * @param entity 
  6.      * @return the saved entity 
  7.      */  
  8.     <S extends T> S save(S entity);  

这。。。

点进去看一看有哪些实现。。。

只有SimpleJpaRepository中的实现:

 

Java代码   收藏代码
  1. /* 
  2.      * (non-Javadoc) 
  3.      * @see org.springframework.data.repository.CrudRepository#save(java.lang.Object) 
  4.      */  
  5.     @Transactional  
  6.     public <S extends T> S save(S entity) {  
  7.   
  8.         if (entityInformation.isNew(entity)) {  
  9.             em.persist(entity);  
  10.             return entity;  
  11.         } else {  
  12.             return em.merge(entity);  
  13.         }  
  14.     }  

 

你可能感兴趣的:(jpa,update,save,CrudRepository)