SpringDataJPA入門就這麼簡單

Java3y發表於2018-03-20

一、SpringData入門

在上次學SpringBoot的時候,那時候的教程就已經涉及到了一點SpringData JPA的知識了。當時還是第一次見,覺得也沒什麼大不了,就是封裝了Hibernate的API而已。

然後在慕課網上又看到了SpringData的教程了。於是就進去學習了一番。

教程地址:www.imooc.com/learn/821 原始碼下載地址:img.mukewang.com/down/58e60b…

在教程中是以原始JDBC和Spring JDBC Template來進行引入SpringData的。

由於原始的JDBC和Spring JDBC Template需要書寫的程式碼量還是比較多的,於是我們就有了SpringData這麼一個框架了。

1.1SpringDataJPA入門

SpringData JPA只是SpringData中的一個子模組

JPA是一套標準介面,而Hibernate是JPA的實現

SpringData JPA 底層預設實現是使用Hibernate

SpringDataJPA 的首個介面就是Repository,它是一個標記介面。只要我們的介面實現這個介面,那麼我們就相當於在使用SpringDataJPA了。

只要我們實現了這個介面,我們就可以使用"按照方法命名規則"來進行查詢。我第一次見到他的時候覺得他賊神奇。

SpringDataJPA入門就這麼簡單

1.2專案配置

  1. 在pom.xml中新增相關依賴
  2. 在yml或者properties檔案種配置對應的屬性
  3. 建立實體和Repository測試

參考資源:

例子:

比如:定義下面這麼一個方法,就可以在外界使用了。


Employee findByName(String name);

複製程式碼

也就是說,上面的方法會被解析成SQL語句:select * from Employee where name = ?

是不是覺得很方便!!!!

如果是簡單的操作的話,直接定義這麼一個方法,就能夠使用了。確確實實很好。

簡直比Mytais不知道好到哪裡去了。Mybatis還要去寫對映檔案,專門寫一個sql語句。

同時,建立了實體就能夠自動幫我們建立資料庫表了,修改了實體欄位也能夠將資料表一起修改。頓時就覺得很好用了。


/**
 * 僱員:  先開發實體類===>自動生成資料表
 */
@Entity
public class Employee {

    private Integer id;

    private String name;

    private Integer age;

    @GeneratedValue
    @Id
    public Integer getId() {
        return id;
    }

    public void setId(Integer id) {
        this.id = id;
    }

    @Column(length = 20)
    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public Integer getAge() {
        return age;
    }

    public void setAge(Integer age) {
        this.age = age;
    }
}


複製程式碼

當然了,上面根據方法名來使用是有弊端的:

  • 1)方法名會比較長: 約定大於配置
  • 2)對於一些複雜的查詢,是很難實現

比如:


    // where name like ?% and age <?
    public List<Employee> findByNameStartingWithAndAgeLessThan(String name, Integer age);

    // where name like %? and age <?
    public List<Employee> findByNameEndingWithAndAgeLessThan(String name, Integer age);

    // where name in (?,?....) or age <?
    public List<Employee> findByNameInOrAgeLessThan(List<String> names, Integer age);

    // where name in (?,?....) and age <?
    public List<Employee> findByNameInAndAgeLessThan(List<String> names, Integer age);


複製程式碼

因此,對於這種情況下還是要寫SQL語句簡單得多。


    @Query("select o from Employee o where id=(select max(id) from Employee t1)")
    public Employee getEmployeeByMaxId();

    @Query("select o from Employee o where o.name=?1 and o.age=?2")
    public List<Employee> queryParams1(String name, Integer age);

    @Query("select o from Employee o where o.name=:name and o.age=:age")
    public List<Employee> queryParams2(@Param("name")String name, @Param("age")Integer age);

    @Query("select o from Employee o where o.name like %?1%")
    public List<Employee> queryLike1(String name);

    @Query("select o from Employee o where o.name like %:name%")
    public List<Employee> queryLike2(@Param("name")String name);

    @Query(nativeQuery = true, value = "select count(1) from employee")
    public long getCount();


複製程式碼

學過Hibernate的都知道上面的不是原生的SQL語句,是HQL/JPQL語句。不過他用起來還是比Mybatis簡潔很多

對於修改資料,需要增加Modify註解、並且一定要在事務的管理下才能修改資料


    @Modifying
    @Query("update Employee o set o.age = :age where o.id = :id")
    public void update(@Param("id")Integer id, @Param("age")Integer age);

複製程式碼

1.3Repository子類介面

SpringDataJPA入門就這麼簡單

CURDRepository介面的實現方法:

SpringDataJPA入門就這麼簡單

排序、分頁介面:

SpringDataJPA入門就這麼簡單

SpringDataJPA入門就這麼簡單

SpringDataJPA入門就這麼簡單

SpringDataJPA入門就這麼簡單

增加過濾條件的介面:

SpringDataJPA入門就這麼簡單

SpringDataJPA入門就這麼簡單

JPA介面:

SpringDataJPA入門就這麼簡單

JpaRepository繼承PagingAndSortingRepository,PagingAndSortingRepository又繼承CrudRepository,也就是說我們平時自定義的介面只要繼承JpaRepository,就相當於擁有了增刪查改,分頁,等等功能。

二、JPQL基礎#

原來JPQL是JPA的一種查詢語言,之前我是認為它和HQL是一樣的。其實是兩個概念。不過它們用起來還真是差不多。

無非就是:JPA對應JPQL,而Hibernate對應HQL而已。都是物件導向的查詢語言。

SpringDataJPA入門就這麼簡單

SpringDataJPA入門就這麼簡單

SpringDataJPA入門就這麼簡單

2.1 Criteria查詢##

這裡就涵蓋了很多的條件了。

SpringDataJPA入門就這麼簡單

2.2 Specification介面使用

SpringDataJPA入門就這麼簡單

其實這個介面的API就和Criteria是一樣的,看懂了Criteria API,這個介面就會用了。

2.3 nameQuery註解##

SpringDataJPA入門就這麼簡單

SpringDataJPA入門就這麼簡單

2.4query註解##

SpringDataJPA入門就這麼簡單

SpringDataJPA入門就這麼簡單

2.5 小總結

www.zhihu.com/question/53…

引入知乎的一段回答:

基本的增刪改查和呼叫儲存過程通過Spring Data JPA Repository來解決

稍微複雜的查詢或是批量操作使用QueryDSL或Spring Data Specification的API來解決

特別特別複雜的查詢操作可以使用Spring Data JPA Repository的註解定義native sql來解決

三、需要注意的地方

3.1 註解寫在get方法上

剛開始用的時候我以為註解是寫在屬性上,但是遇到了很多的bug,在網上的解決方案又是很少。

遇到了一個Bug,在國內的論壇幾乎都找不到答案:


org.hibernate.property.access.spi.PropertyAccessBuildingException: Could not locate field nor getter method for property named [cn.itheima.web.domain.Customer#cust_user_id]
複製程式碼

搞得頭都大了都沒有找到合適的方法,不知道是哪裡錯了。

後來去看了JPA的一對多、多對一的博文去參考了一下,感覺我還是沒有錯。

最後才發現大多數的博文都是在get方法上寫註解的,而我就在屬性上直接寫註解了。

在Get方法上寫註解的原因是不用破壞我們的封裝性,我直接在屬性上寫註解,而屬性是private來進行修飾的。這也導致了我出現這個錯誤的原因。

3.2級聯 .ALL慎用

在儲存資料的時候,我以為直接使用casecade.ALL是最方便的,但是還出現了Bug。後來找到了答案:http://blog.csdn.net/csujiangyu/article/details/48223641

3.3@OneToOne的註解


@Target({METHOD, FIELD}) 
@Retention(RUNTIME)
public@interfaceOneToOne {
     Class targetEntity() default void.class;
     CascadeType[]cascade()default();
     FetchType fetch() default EAGER;
     boolean optional() default true;
     String mappedBy() default "";
}
複製程式碼

1,targetEntity 屬性表示預設關聯的實體型別,預設為當前標註的實體類。 2,cascade屬性表示與此實體一對一關聯的實體的級聯樣式型別。 3,fetch屬性是該實體的載入方式,預設為即時載入EAGER 4,optional屬性表示關聯的該實體是否能夠存在null值,預設為ture,如果設定為false,則該實體不能為null, 5, mapperBy屬性:指關係被維護端

3.4@JoinColumn註解

@Target({METHOD, FIELD}) 
@Retention(RUNTIME)
public@interfaceJoinColumn {
    String name() default "";
    String referencedColumnName() default "";
    boolean unique() default false;
    boolean nullable() default true;
    boolean insertable() default true;
    booleanupdatabledefaulttrue;
    String columnDefinition() default "";
    String table() default "";
}
複製程式碼

1,@JoinColumn註釋是儲存表與表之間關係的欄位 2,**如果不設定name,預設name = 關聯表的名稱+”-“+關聯表主鍵的欄位名,在上面例項3,中,預設為“address_id” ** 預設情況下,關聯實體的主鍵一般是用來做外來鍵的,但如果此時不想用主鍵作為外來鍵,則需要設定referencedColumnName屬性,如:


create table address (
    id int(20) not null auto_increament,
    ref_id int(20) notn ull,
    province varchar(50),
    city varchar(50),
    postcode varchar(50),
    detail varchar(50),
    primary key(id)
)

@OneToOne@JoinColumn(name="address_id", referencedColumnName="ref_id")
private AddressEO address;
複製程式碼

四、擴充套件閱讀

後來我使用了SpringData JPA用於一個簡單的專案,從中也遇到了不少的問題和相關的沒有接觸到的知識點。下面我會給出當時搜尋到的資料和遇到的問題以及解決方案

4.1遇到的問題以及解決資料

SpringData JPA遇到的問題有:

參考資料:

五、總結

總的來說,如果是單表操作的話,那麼SpringData JPA是十分方便的,如果是比較複雜的業務的話,那麼使用SpringData JPA就有點麻煩了,因為它返回的是Object[],返回的結果還要手動進行封裝,不太方便。靈活性很低...

如果文章有錯的地方歡迎指正,大家互相交流。習慣在微信看技術文章,想要獲取更多的Java資源的同學,可以關注微信公眾號:Java3y

相關文章