溫馨提示×

溫馨提示×

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

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

Spring?Data?JPA數(shù)據(jù)持久化存儲到數(shù)據(jù)庫的方法

發(fā)布時間:2022-04-28 09:08:05 來源:億速云 閱讀:420 作者:iii 欄目:開發(fā)技術(shù)

今天小編給大家分享一下Spring Data JPA數(shù)據(jù)持久化存儲到數(shù)據(jù)庫的方法的相關(guān)知識點,內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

    1 核心概念

    Spring Data存儲庫抽象的中心接口是Repository。它把要管理的實體類以及實體類的ID類型作為類型參數(shù)。這個接口主要是作為一個標(biāo)記接口,用來捕捉工作中的類型,并幫助你發(fā)現(xiàn)擴(kuò)展這個接口的接口。CrudRepository接口為被管理的實體類提供復(fù)雜的CRUD功能。

    自己可以看看Repository的擴(kuò)展接口以及實現(xiàn)類 IDEA中將光標(biāo)定位在Repository.java文件中, ctrl+h快捷鍵就可以看。

    Spring?Data?JPA數(shù)據(jù)持久化存儲到數(shù)據(jù)庫的方法

    類圖繼承關(guān)系如下:

    Spring?Data?JPA數(shù)據(jù)持久化存儲到數(shù)據(jù)庫的方法

    CrudRepository接口

    這個接口定義了一套CRUD基本操作的方法,使用起來很方便

    Spring?Data?JPA數(shù)據(jù)持久化存儲到數(shù)據(jù)庫的方法

    CrudRepository接口比較強(qiáng)大的地方在于可以派生方法,什么意思, 舉個例子

    you一張用戶表,如果你想按照某個字段統(tǒng)計一下數(shù)量, 這個實現(xiàn)的確非常強(qiáng)大。

    public interface MemberMapper extends CustomRepository<Member, Long> {
        /** 派生方法按照用戶名統(tǒng)計人數(shù) */
        Long countByMemberName(String username);
        /** 派生方法按照用戶部門號統(tǒng)計人數(shù) */
        Long countByDeptId(Integer deptId);
    }

    PagingAndSortingRepository接口

    在CrudRepository之上,有一個PagingAndSortingRepository的抽象,它增加了額外的方法以方便對實體類的分頁查詢訪問

    Spring?Data?JPA數(shù)據(jù)持久化存儲到數(shù)據(jù)庫的方法

    2 查詢方法

    標(biāo)準(zhǔn)的CRUD功能庫通常有對底層數(shù)據(jù)存儲的查詢。使用Spring Data,聲明這些查詢需要4個步驟:

    1】聲明一個擴(kuò)展Repository或其子接口之一的接口,并指定它應(yīng)該處理的實體類和ID類型

    interface MemberRepository extends Repository<Member, Long> { … }

    2】在接口中聲明查詢方法

    interface MemberRepository extends Repository<Member, Long> {
      List<Member> findByMembername(String username);
    }

    3】設(shè)置Spring為這些接口創(chuàng)建代理實例, 可以使用配置類或xml配置文件的方式來實現(xiàn)

    通過 配置類的方式,示例如下:

    import org.springframework.data.jpa.repository.config.EnableJpaRepositories;
    @EnableJpaRepositories
    public class MyConfig {
     }

    通過 xml配置文件的方式,示例如下:

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:jpa="http://www.springframework.org/schema/data/jpa"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
         https://www.springframework.org/schema/beans/spring-beans.xsd
         http://www.springframework.org/schema/data/jpa
         https://www.springframework.org/schema/data/jpa/spring-jpa.xsd">
       <jpa:repositories base-package="com.kkarma.repository"/>
    </beans>

    本示例中使用的是JPA命名空間。如果你對任何其他存儲使用存儲庫抽象,你需要將其修改成你的存儲模塊的對應(yīng)命名空間聲明。換句話說,你應(yīng)該把jpa換成其他的存儲類型,例如mongodb。

    另外,請注意,JavaConfig配置類并不明確地配置掃描的基礎(chǔ)包,因為默認(rèn)情況下會使用注釋類的包。要自定義要掃描的包,請使用數(shù)據(jù)存儲特定庫的 @Enable${store}Repositories-annotation 的 basePackage&hellip; 屬性之一。什么意思呢,舉例:

    如果你的store類型是 mongodb, 就使用@EnableMongoRepositories

    @Configuration
    @EnableMongoRepositories(*arrayOf("com.kkarma.repository", "com.???.???"))
    class PersistenceConfig : AbstractMongoConfiguration() {
    }

    如果你的store類型是 redis, 就使用@EnableRedisRepositories

    如果你的store類型是 jpa, 就使用@EnableJpaRepositories

    簡單配置單個package,格式如下:

    @EnableJpaRepositories("com.spr.repository")

    簡單配置支持多個package,格式如下:

    @EnableJpaRepositories({"com.cshtong.sample.repository", "com.cshtong.tower.repository"})

    4】注入Repository實例并使用它

    @Service
    public class MemberServiceImpl implements MemberService {
        private final MemberMapper memberMapper;
        public MemberServiceImpl(MemberMapper memberMapper) {
            this.memberMapper = memberMapper;
        }
        @Override
        public ApiResponse insertMember(Member member) {
            Member user = memberMapper.save(member);
            return ApiResponse.success("新增成功", user);
        }
    }

    以上就是“Spring Data JPA數(shù)據(jù)持久化存儲到數(shù)據(jù)庫的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學(xué)習(xí)更多的知識,請關(guān)注億速云行業(yè)資訊頻道。

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

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

    AI