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

com.es.plus.autoconfigure.EsIndexScan Maven / Gradle / Ivy

There is a newer version: 0.3.92
Show newest version
package com.es.plus.autoconfigure;

import org.springframework.context.annotation.Import;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
@Import(EsIndexScanRegister.class)
public @interface EsIndexScan {
    
    /**
     * Base packages to scan for MyBatis interfaces. Note that only interfaces with at least one method will be
     * registered; concrete classes will be ignored.
     *
     * @return base package names for scanning mapper interface
     */
    String[] basePackages() default {};
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy