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

com.infobip.spring.data.jpa.EnableExtendedJpaRepositories Maven / Gradle / Ivy

package com.infobip.spring.data.jpa;

import org.springframework.context.annotation.Import;
import org.springframework.data.jpa.repository.config.EnableJpaRepositories;

import java.lang.annotation.*;

/**
 * Annotation to enable {@link ExtendedQuerydslJpaRepository} support.
 *
 * @see EnableJpaRepositories
 */
@Import(ExtendedQuerydslJpaConfiguration.class)
@EnableJpaRepositories(repositoryFactoryBeanClass = ExtendedQuerydslJpaRepositoryFactoryBean.class)
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface EnableExtendedJpaRepositories {

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy