io.github.taills.common.jpa.repository.BaseRepository Maven / Gradle / Ivy
package io.github.taills.common.jpa.repository;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.jpa.repository.JpaSpecificationExecutor;
import org.springframework.data.repository.NoRepositoryBean;
/**
* 该接口不是一个Repository,不需要生成代理实现
* @ClassName BaseRepository
* @Description
* @Author nil
* @Date 2021/10/18 10:57 下午
**/
@NoRepositoryBean
public interface BaseRepository extends JpaRepository, JpaSpecificationExecutor {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy