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

com.infobip.spring.data.r2dbc.EnableQuerydslR2dbcRepositories Maven / Gradle / Ivy

package com.infobip.spring.data.r2dbc;

import org.springframework.context.annotation.Import;
import org.springframework.data.r2dbc.repository.config.EnableR2dbcRepositories;

import java.lang.annotation.*;

/**
 * Annotation to enable {@link QuerydslR2dbcRepository} support.
 *
 * @see EnableR2dbcRepositories
 */
@Import(R2dbcConfiguration.class)
@EnableR2dbcRepositories(repositoryFactoryBeanClass = QuerydslR2dbcRepositoryFactoryBean.class)
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface EnableQuerydslR2dbcRepositories {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy