所有程序包的分层结构

程序包分层结构:

类分层结构

  • java.lang.Object
    • cn.herodotus.stirrup.core.definition.domain.base.AbstractEntity (implements cn.herodotus.stirrup.core.definition.domain.base.Entity)
    • cn.herodotus.stirrup.data.crud.service.AbstractJpaService<E,ID> (implements cn.herodotus.stirrup.data.crud.service.JpaWriteableService<E,ID>)
    • cn.herodotus.stirrup.data.crud.generator.AbstractUuidGenerator (implements org.hibernate.id.IdentifierGenerator, org.hibernate.id.factory.spi.StandardGenerator)
    • org.hibernate.cache.spi.QueryKey (implements java.io.Serializable)
    • cn.herodotus.stirrup.data.crud.generator.SnowFlakeIDGenerator (implements org.hibernate.id.IdentifierGenerator, org.hibernate.id.factory.spi.StandardGenerator)

接口分层结构

  • cn.herodotus.stirrup.data.crud.service.JpaReadableService<E,ID>
  • org.springframework.data.jpa.repository.JpaSpecificationExecutor<T>
    • cn.herodotus.stirrup.data.crud.repository.BaseJpaRepository<E,ID> (并 extends org.springframework.data.jpa.repository.JpaRepository<T,ID>)
  • cn.herodotus.stirrup.data.crud.service.MongoService<E,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.herodotus.stirrup.data.crud.repository.BaseJpaRepository<E,ID> (并 extends org.springframework.data.jpa.repository.JpaSpecificationExecutor<T>)
    • org.springframework.data.mongodb.repository.MongoRepository<T,ID> (并 extends org.springframework.data.repository.ListCrudRepository<T,ID>, org.springframework.data.repository.ListPagingAndSortingRepository<T,ID>)
  • 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.herodotus.stirrup.data.crud.repository.BaseJpaRepository<E,ID> (并 extends org.springframework.data.jpa.repository.JpaSpecificationExecutor<T>)
        • org.springframework.data.mongodb.repository.MongoRepository<T,ID> (并 extends org.springframework.data.repository.ListPagingAndSortingRepository<T,ID>, org.springframework.data.repository.query.QueryByExampleExecutor<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.herodotus.stirrup.data.crud.repository.BaseJpaRepository<E,ID> (并 extends org.springframework.data.jpa.repository.JpaSpecificationExecutor<T>)
        • org.springframework.data.mongodb.repository.MongoRepository<T,ID> (并 extends org.springframework.data.repository.ListCrudRepository<T,ID>, org.springframework.data.repository.query.QueryByExampleExecutor<T>)
  • java.io.Serializable

批注接口分层结构