All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.aqiu202.starters.jpa.dao.BaseRepository Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.github.aqiu202.starters.jpa.dao;


import java.io.Serializable;
import org.springframework.data.jpa.domain.Specification;
import org.springframework.data.repository.NoRepositoryBean;

/**
 * 自定义jpaRepository扩展方法
 *
 * @author AQIU
 * @version 创建时间:2018年4月12日 上午11:03:55
 */
@NoRepositoryBean
public interface BaseRepository extends
        JpaBaseRepository {

    boolean exists(Specification specification);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy