關於Spring Data Jpa 自定義方法實現問題

Spring Data Jpa 自定義方法的實現

最近項目中用到瞭Spring Data JPA,在裡面我繼承瞭一個PagingAndSortingRepository的接口,期望的是利用Spring Data JPA提供的便利。

同時我也希望自己有一個能定義自己方法的接口,因為單純靠Spring Data JPA中提供的功能還是有很多業務邏輯實現不瞭,我必須自己實現。

那麼問題來瞭:Spring Data JPA好處就是讓我們省去瞭實現接口的過程,按照他們給的命名規范他們會自動實現我們的業務邏輯,那我們自己實現的接口要怎麼註入到其中呢?

上網查找瞭好多資料,都沒有說的太詳細,更多的是照搬胡抄,這裡是我親自寫的,可能很多人會用到,不多說上代碼:

自己的接口

package com.mhc.dao; 
import org.springframework.stereotype.Repository; 
import com.mhc.entity.Person;
 
@Repository
public interface DeviceCategoryDaoCustom {
 public Person getsFather(Person person); 
}

主接口

public interface DeviceCategoryDao extends
  PagingAndSortingRepository<Person, String>, DeviceCategoryDaoCustom {  
}

上面是我的接口繼承PagingAndSortingRepository、DeviceCategoryDaoCustom(我自己方法的接口)。

我新建一個類來實現我自己的接口

package com.mhc.dao; 
import javax.persistence.PersistenceContext;
import javax.transaction.Transactional; 
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.repository.CrudRepository;
import org.springframework.data.repository.NoRepositoryBean;
import org.springframework.stereotype.Component;
import org.springframework.stereotype.Repository;
import org.springframework.stereotype.Service; 
import com.mhc.entity.Person;
 
@Repository("crudRepositoryDaoCustom")
class DeviceCategoryDaoImpl implements DeviceCategoryDaoCustom {
 
 @Transactional
 public Person getsFather(Person person) {
  // TODO Auto-generated method stub
  Person father = new Person();
  father = person.getParentPerson();
  return father;
 }
}

在這裡有個需要註意的地方,就是用不用implements的問題,如果用的話,他就會調用編譯器的實現功能去實現我們自定義的接口也就是:DevicecategoryCustom。

如果去掉的話,他會去實現DeviceCategoryDao,那麼會有人問,他怎麼去自己找的呢。

事實上他是根據後面的Impl來尋找的。他不會提示@override,不過你寫相同的方法他還是會覆蓋(覆蓋主接口中的同名方法,如果有的話)DeviceCategoryDao中的同名方法。你可以去嘗試一下。

同時加上@Repository把他加入到Bean裡面,這樣下次用這個方法的時候Repository會自動找到他的(話說Spring團隊真心NB)。然後我們交給spring托管、測試。。。。。Ok 真心贊

Spring Data Jpa自定義方法關鍵字

關鍵字 方法名舉例 對應的SQL
And findByNameAndAge where name = ? and age = ?
Or findByNameOrAge where name = ? or age = ?
Is findByNameIs where name = ?
Equals findByNameEquals where name = ?
Between findByAgeBetween where age between ? and ?
LessThan findByAgeLessThan where age < ?
LessThanEquals findByAgeLessThanEqual where age <= ?
GreatorThan findByAgeGreaterThan where age > ?
GreatorThanEquals findByAgeGreaterThanEqual where age >= ?
After findByAgeAfter where age > ?
Before findByAgeBefore where age < ?
IsNull findByNameIsNull where name is null
IsNotNull,NotNull findByNameIsNotNull,findByNameNotNull where name is not null
Not findByNameNot where name <>?
In findByAgeIn where age in (?)
NotIn findByAgeNotIn where age not in (?)
NotLike findByNameNotLike where name not like ?
Like findByNameLike where name like ?
StartingWith findByNameStartingWith where name like ‘?%’
EndingWith findByNameEndingWith where name like ‘%?’
Containing,Contains findByNameContaining,findByNameContains where name like ‘%?%’
OrderBy findByOrderByAgeDesc order by age desc
True findByBossTrue where boss = true
False findByBossFalse where boss = false
IgnoreCase findByNameIgnoreCase where UPPER(name) = UPPER(?)

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: