程序包com.vien.dao的分层结构

程序包分层结构:

接口分层结构

  • org.springframework.data.jpa.repository.JpaSpecificationExecutor<T>
    • cn.xisoil.dao.YueRepository<T,ID> (并 extends org.springframework.data.jpa.repository.JpaRepository<T,ID>)
  • org.springframework.data.repository.query.QueryByExampleExecutor<T>
    • org.springframework.data.jpa.repository.JpaRepository<T,ID> (并 extends org.springframework.data.repository.ListCrudRepository<T,ID>, org.springframework.data.repository.ListPagingAndSortingRepository<T,ID>)
      • cn.xisoil.dao.YueRepository<T,ID> (并 extends org.springframework.data.jpa.repository.JpaSpecificationExecutor<T>)
  • org.springframework.data.repository.Repository<T,ID>
    • org.springframework.data.repository.CrudRepository<T,ID>
      • org.springframework.data.repository.ListCrudRepository<T,ID>
        • org.springframework.data.jpa.repository.JpaRepository<T,ID> (并 extends org.springframework.data.repository.ListPagingAndSortingRepository<T,ID>, org.springframework.data.repository.query.QueryByExampleExecutor<T>)
          • cn.xisoil.dao.YueRepository<T,ID> (并 extends org.springframework.data.jpa.repository.JpaSpecificationExecutor<T>)
    • org.springframework.data.repository.PagingAndSortingRepository<T,ID>
      • org.springframework.data.repository.ListPagingAndSortingRepository<T,ID>
        • org.springframework.data.jpa.repository.JpaRepository<T,ID> (并 extends org.springframework.data.repository.ListCrudRepository<T,ID>, org.springframework.data.repository.query.QueryByExampleExecutor<T>)
          • cn.xisoil.dao.YueRepository<T,ID> (并 extends org.springframework.data.jpa.repository.JpaSpecificationExecutor<T>)
  • com.vien.dao.Service