溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

spring-data-jpa怎么使用自定義repository來實(shí)現(xiàn)原生sql

發(fā)布時(shí)間:2021-11-25 15:27:49 來源:億速云 閱讀:427 作者:小新 欄目:開發(fā)技術(shù)

這篇文章給大家分享的是有關(guān)spring-data-jpa怎么使用自定義repository來實(shí)現(xiàn)原生sql的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

使用自定義repository實(shí)現(xiàn)原生sql

Spring Data JPA中的Repository是接口,是JPA根據(jù)方法名幫我們自動(dòng)生成的。但很多時(shí)候,我們需要為Repository提供一些自定義的實(shí)現(xiàn)。今天我們看看如何為Repository添加自定義的方法。

自定義Repository接口

首先我們來添加一個(gè)自定義的接口:

  • 添加BaseRepository接口

  • BaseRepository繼承了JpaRepository,這樣可以保證所有Repository都有jpa提供的基本方法。

  • 在BaseRepository上添加@NoRepositoryBean標(biāo)注,這樣Spring Data Jpa在啟動(dòng)時(shí)就不會(huì)去實(shí)例化BaseRepository這個(gè)接口

/**
 * Created by liangkun on 2016/12/7.
 */
@NoRepositoryBean
public interface BaseRepository<T,ID extends Serializable> extends JpaRepository<T,ID> {
 
    //sql原生查詢
    List<Map<String, Object>> listBySQL(String sql);
}

接下來實(shí)現(xiàn)BaseRepository接口,并繼承SimpleJpaRepository類,使其擁有Jpa Repository的提供的方法實(shí)現(xiàn)。

/**
 * Created by liangkun on 2017/12/7.
 */
public class BaseRepositoryImpl<T, ID extends Serializable> extends SimpleJpaRepository<T,ID> implements BaseRepository<T,ID> {
    private final EntityManager entityManager;
    //父類沒有不帶參數(shù)的構(gòu)造方法,這里手動(dòng)構(gòu)造父類
    public BaseRepositoryImpl(Class<T> domainClass, EntityManager entityManager) {
        super(domainClass, entityManager);
        this.entityManager = entityManager;
    }
 
    //通過EntityManager來完成查詢
    @Override
    public  List<Map<String, Object>> listBySQL(String sql) {
        return entityManager.createNativeQuery(sql).getResultList();
    }
}

這里著重說下EntityManager

EntityManager是JPA中用于增刪改查的接口,它的作用相當(dāng)于一座橋梁,連接內(nèi)存中的java對(duì)象和數(shù)據(jù)庫的數(shù)據(jù)存儲(chǔ)。也可以根據(jù)他進(jìn)行sql的原生查找。

源碼如下:

public interface EntityManager {
    <T> T find(Class<T> var1, Object var2);
    Query createNativeQuery(String var1);
    Query createNativeQuery(String var1, Class var2);
    Query createNativeQuery(String var1, String var2);
}

由上可以看出其有具體的原生查詢實(shí)現(xiàn)接口 createNativeQuery

接下來需要將我們自定義的Repository接口,通過工廠模式添加到Spring的容器中:

創(chuàng)建自定義RepositoryFactoryBean

接下來我們來創(chuàng)建一個(gè)自定義的RepositoryFactoryBean來代替默認(rèn)的RepositoryFactoryBean。RepositoryFactoryBean負(fù)責(zé)返回一個(gè)RepositoryFactory,Spring Data Jpa 將使用RepositoryFactory來創(chuàng)建Repository具體實(shí)現(xiàn)。

查看JpaRepositoryFactoryBean的源碼,通過createRepositoryFactory返回JpaRepositoryFactory實(shí)例:

public class JpaRepositoryFactoryBean<T extends Repository<S, ID>, S, ID extends Serializable>
 extends TransactionalRepositoryFactoryBeanSupport<T, S, ID> {
 private EntityManager entityManager;
 public JpaRepositoryFactoryBean(Class<? extends T> repositoryInterface) {
  super(repositoryInterface);
 }
 
 @PersistenceContext
 public void setEntityManager(EntityManager entityManager) {
  this.entityManager = entityManager;
 }
 
 @Override
 public void setMappingContext(MappingContext<?, ?> mappingContext) {
  super.setMappingContext(mappingContext);
 }
 
 @Override
 protected RepositoryFactorySupport doCreateRepositoryFactory() {
  return createRepositoryFactory(entityManager);
 }
 
 protected RepositoryFactorySupport createRepositoryFactory(EntityManager entityManager) {
  return new JpaRepositoryFactory(entityManager);
 }
 
 @Override
 public void afterPropertiesSet() {
 
  Assert.notNull(entityManager, "EntityManager must not be null!");
  super.afterPropertiesSet();
 }
}

終上我們可根據(jù)相應(yīng)的規(guī)則進(jìn)行創(chuàng)建自定義RepositoryFactoryBean

/**
 * Created by liangkun on 2018/07/20.
 */
public class BaseRepositoryFactoryBean<R extends JpaRepository<T, I>, T, I extends Serializable> extends JpaRepositoryFactoryBean<R, T, I> {
    public BaseRepositoryFactoryBean(Class<? extends R> repositoryInterface) {
        super(repositoryInterface);
    }
 
    @Override
    protected RepositoryFactorySupport createRepositoryFactory(EntityManager em) {
        return new BaseRepositoryFactory(em);
    }
 
    //創(chuàng)建一個(gè)內(nèi)部類,該類不用在外部訪問
    private static class BaseRepositoryFactory<T, I extends Serializable> extends JpaRepositoryFactory {
        private final EntityManager em;
        public BaseRepositoryFactory(EntityManager em) {
            super(em);
            this.em = em;
        }
 
        //設(shè)置具體的實(shí)現(xiàn)類是BaseRepositoryImpl
        @Override
        protected Object getTargetRepository(RepositoryInformation information) {
            return new BaseRepositoryImpl<T, I>((Class<T>) information.getDomainType(), em);
        }
 
        //設(shè)置具體的實(shí)現(xiàn)類的class
        @Override
        protected Class<?> getRepositoryBaseClass(RepositoryMetadata metadata) {
            return BaseRepositoryImpl.class;
        }
    }
}

自定義完成。

SpringDataJpa原生SQL查詢

一些比較復(fù)雜的關(guān)聯(lián)查詢要怎么實(shí)現(xiàn)呢,JPA的處理方法是:利用原生的SQL命令來實(shí)現(xiàn)那些復(fù)雜的關(guān)聯(lián)查詢,通過設(shè)置nativeQuery = true 來設(shè)置開啟使用數(shù)據(jù)庫原生SQL語句。下面就在上一個(gè)案例的基礎(chǔ)上實(shí)現(xiàn)原生sql的增刪改查,代碼如下。

a.首先在StudentRepository里添加如下方法

//利用原生的SQL進(jìn)行查詢操作 
@Query(value = "select s.* from studenttb s where s.student_name=?1", nativeQuery = true) 
public List<Student> findStudentByName(String name);
//利用原生的SQL進(jìn)行刪除操作 
@Query(value = "delete from studenttb where student_id=?1 ", nativeQuery = true) 
@Modifying
@Transactional 
public int deleteStudentById(int uid); 
//利用原生的SQL進(jìn)行修改操作 @Query(value = "update studenttb set student_name=?1 where student_id=?2 ", nativeQuery = true)
@Modifying 
@Transactional 
public int updateStudentName(String name,int id);
//利用原生的SQL進(jìn)行插入操作
@Query(value = "insert into studenttb(student_name,student_age) value(?1,?2)", nativeQuery = true)
@Modifying
@Transactional 
public int insertStudent(String name,int age); 
@Query(value=" SELECT * FROM studenttb WHERE STUDENT_NAME LIKE %:name% ",nativeQuery=true) 
List<Student> queryBynameSQL(@Param(value = "name") String name);

b.在StudentController里面進(jìn)行調(diào)用以上方法

代碼如下:

//原生sql的調(diào)用 
/*** 
* http://localhost:8090/findStudentByName?name=劉一 
* @param name 
* @return */ 
@RequestMapping("/findStudentByName") 
public Object findStuByName(String name) { 
    List<Student> student = repository.findStudentByName(name); 
    return student; 
}
/*** 
* http://localhost:8090/deleteStudentById?id=劉 
* @param name 
* @return */ 
@RequestMapping("/deleteStudentById") 
public Object deleteStudentById(int id) { 
    int i = repository.deleteStudentById(id); 
    Map<String,Object> map=new HashMap<String,Object>(); 
    if(i>0) { 
        map.put("success", true); 
    } else { 
        map.put("success", false); 
    }
    return map; 
}
/*** 
* http://localhost:8090/updateStudentName?name=Tom&id=1 
* @param name 
* @return */ 
@RequestMapping("/updateStudentName") 
public Object updateStudentName(String name,int id) { 
    int i = repository.updateStudentName(name,id); 
    Map<String,Object> map=new HashMap<String,Object>(); 
    if(i>0) { 
        map.put("success", true); 
    } else { 
        map.put("success", false); 
    }
    return map; 
}
/*** 
* http://localhost:8090/insertStudent?name=xiao&age=18 
* @param name 
* @return */ 
@RequestMapping("/insertStudent") 
public Object insertStudent(String name,int age) { 
    int i = repository.insertStudent(name,age); 
    Map<String,Object> map=new HashMap<String,Object>(); 
    if(i>0) { 
        map.put("success", true); 
    } else { 
        map.put("success", false); 
    }
    return map; 
}
/*** 
* http://localhost:8090/queryBynameSQL?name=劉 
* @param name 
* @return */ 
@RequestMapping("/queryBynameSQL") 
public Object queryBynameSQL(String name) { 
    List<Student> student= repository.queryBynameSQL(name); 
    return student; 
}

運(yùn)行效果請(qǐng)各位自行測(cè)試。

感謝各位的閱讀!關(guān)于“spring-data-jpa怎么使用自定義repository來實(shí)現(xiàn)原生sql”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI