溫馨提示×

溫馨提示×

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

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

怎么為Repository添加自定義方法

發(fā)布時間:2021-11-20 08:55:30 來源:億速云 閱讀:229 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“怎么為Repository添加自定義方法”,在日常操作中,相信很多人在怎么為Repository添加自定義方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”怎么為Repository添加自定義方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

一、為某個Repository添加自定義方法

1、定義一個接口PersonDao,聲明要添加的方法。

public interface PersonDao{
 public List<Person> getlist();
}

2、提供該接口的實現(xiàn)類PersonRepositoryImpl。類名需在要與聲明的 Repository 后添加 Impl,并實現(xiàn)PersonDao中聲明的方法。

@Repository
public class PersonRepositoryImpl implements PersonDao{
 @PersistenceContext
 private EntityManager em;
 
 @Override
 public List<Person> getlist() {
  Query query = em.createQuery("from Person");
  return query.getResultList();
 }
}

3、使用Repository 接口, 并繼承PersonDao接口。

public interface PersonRepository 
 extends JpaRepository<Person, Integer>, JpaSpecificationExecutor<Person>, PersonDao{
}

4、這時SpringData會自動加載PersonRepositoryImpl的實現(xiàn)類。

@Test
public void testList(){
 List<Person> list = service.getList();
 for (Person p : list) {
  System.out.println(p);
 }
}

注意:XXXRepositoryImpl 與XXXRepository前面的名字必須相同,后面的也需要按照規(guī)則寫,若將XXXRepositoryImpl與XXXRepository接口放在同意包下,XXXRepositoryImpl不需要添加@Repository注解,但是當XXXRepositoryImpl與XXXRepository接口不在同一包下,需要在在XXXRepositoryImpl類上加Repository注解進行修飾

二、添加全局Repository

1、聲明一個接口, 在該接口中聲明需要自定義的方法, 且該接口需要繼承 Spring Data 的 Repository。

@NoRepositoryBean
public interface BaseRepository<T, ID extends Serializable> 
 extends JpaRepository<T, ID> { 
 public void helloworld();
}

注意:全局的擴展實現(xiàn)類不要用 Imp 作為后綴名, 或為全局擴展接口添加 @NoRepositoryBean 注解告知 Spring Data: Spring Data 不把其作為 Repository

2、提供BaseRepository所聲明的接口的實現(xiàn)類. 且繼承 SimpleJpaRepository, 并提供方法的實現(xiàn)。

public class BaseRepositoryImpl<T, ID extends Serializable> 
 extends SimpleJpaRepository<T, ID>
 implements BaseRepository<T, ID> {
 private EntityManager em;
 public BaseRepositoryImpl(Class<T> domainClass, EntityManager em) {
  super(domainClass, em);
  this.em = em;
 }
 @Override
 public void helloworld() {
  System.out.println("helloworld");
 }
}

3、定義 JpaRepositoryFactoryBean 的實現(xiàn)類, 使其生成BaseRepository 定義的接口實現(xiàn)類的對象。

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 entityManager) {
  return new MyRepositoryFactory(entityManager);
 }
 
 public static class MyRepositoryFactory<T, I extends Serializable>
   extends JpaRepositoryFactory {
 
  private final EntityManager em;
  
  public MyRepositoryFactory(EntityManager entityManager) {
   super(entityManager);
   this.em = entityManager;
  }
  
  @Override
  protected Object getTargetRepository(RepositoryInformation information) {
   return new BaseRepositoryImpl<T, I>((Class<T>) information.getDomainType(), em);
  }
  
  @Override
  protected Class<?> getRepositoryBaseClass(RepositoryMetadata metadata) {
   return BaseRepositoryImpl.class;
  }
 }
}

4、修改 <jpa:repositories /> 節(jié)點的 factory-class 屬性指向BaseRepositoryFactoryBean的全類名。

<jpa:repositories base-package="com.znsd.springdata.dao" 
  entity-manager-factory-ref="entityManagerFactory" 
  transaction-manager-ref="txManager" 
  factory-class="com.znsd.springdata.dao.BaseRepositoryFactoryBean" />

5、使用自定義的BaseRepository接口。

public interface StudentRepository extends BaseRepository<Student, Integer>{
}

繼承jpa Repository 寫自定義方法查詢

今天在寫jpa查詢的時候,遇到了添加自定義方法,項目啟動報錯原因,現(xiàn)總結(jié)如下:

首先定義實體類

@Entity
@Table(name = "user")
Class User{
     @Id
    @GeneratedValue 
      int id;
      @Column
      String age;
      @Column
      String school;
      @Column
      String userName;
  set,get方法 (省略)
}
public interface UserRepository extends JpaRepository<User, Long> {
      List<User> findByUsernameLike(String username);
     List<User> aaa();
}

啟動項目時,項目報錯提示信息為:org.springframework.data.mapping.PropertyReferenceException: No property aaa found for type com.fpi.safety.common.entity.po.User

再將List<User> aaa();方法去掉后,項目又可以正常啟動運行

是什么原因呢?

經(jīng)查找,原來是繼承jpa,必須滿足一些規(guī)則,規(guī)則如下

怎么為Repository添加自定義方法

怎么為Repository添加自定義方法

Spring Data JPA框架在進行方法名解析時,會先把方法名多余的前綴截取掉,比如find,findBy,read,readBy,get,getBy,然后對剩下的部分進行解析。

假如創(chuàng)建如下的查詢:findByUserName(),框架在解析該方法時,首先剔除findBy,然后對剩下的屬性進行解析,假設(shè)查詢實體為User

1:先判斷userName(根據(jù)POJO規(guī)范,首字母變?yōu)樾懀┦欠駷椴樵儗嶓w的一個屬性,如果是,則表示根據(jù)該屬性進行查詢;如果沒有該屬性,繼續(xù)第二步;

2:從右往左截取第一個大寫字母開頭的字符串此處是Name),然后檢查剩下的字符串是否為查詢實體的一個屬性,如果是,則表示根據(jù)該屬性進行查詢;如果沒有該屬性,則重復(fù)第二步,繼續(xù)從右往左截取;最后假設(shè)用戶為查詢實體的一個屬性;

3:接著處理剩下部分(UserName),先判斷用戶所對應(yīng)的類型是否有userName屬性,如果有,則表示該方法最終是根據(jù)“User.userName”的取值進行查詢;否則繼續(xù)按照步驟2的規(guī)則從右往左截取,最終表示根據(jù)“User.userName”的值進行查詢。

4:可能會存在一種特殊情況,比如User包含一個的屬性,也有一個userNameChange屬性,此時會存在混合??梢悦鞔_在屬性之間加上“_”以顯式表達意思,比如“findByUser_NameChange )“或者”findByUserName_Change()“

從上面,我們可以得知,jap在解析是,aaa在user類中是沒有屬性的,所以報錯No property aaa found.

  • 如果我們想要使用jap框架,又不想再多增加一個自定義類,則必須符合其命名規(guī)則

  • 如果,你記不住jpa的規(guī)則也沒關(guān)系,你可以自己再多寫一個類來實現(xiàn)自定義查詢方法

如下:

1. 自定義一個接口,該接口用來聲明自己額外定義的查詢。

public interface UseerRepositoryTwo {
    public List<User> searchUser(String name, int id);
}

2. 創(chuàng)建一個接口,該接口 extends JpaRepository 或者 CurdRepository, 以及上面自己定義的接口 UseerRepositoryTwo

public interface UserRepositoryTwoService extends CrudRepository<LogDTO, Integer>, CustomizedLogRepository {
}

3. 實現(xiàn)UserRepositoryTwoService

注意此處的類名,必須以 2 中創(chuàng)建的接口的名字UserRepositoryTwoService,后面加上 Impl 來聲明,而不是寫成 UseerRepositoryTwoImpl

public class UserRepositoryTwoServiceImpl implements UserRepositoryTwoService {
    @Autowired
    @PersistenceContext
    private EntityManager entityManager;
    @Override
    public List<User> searchLogs(int Id, String name) {
        ......
    }
}

到此,關(guān)于“怎么為Repository添加自定義方法”的學習就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

向AI問一下細節(jié)

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

AI