Example usage for org.springframework.context.annotation ClassPathScanningCandidateComponentProvider subclass-usage

List of usage examples for org.springframework.context.annotation ClassPathScanningCandidateComponentProvider subclass-usage

Introduction

In this page you can find the example usage for org.springframework.context.annotation ClassPathScanningCandidateComponentProvider subclass-usage.

Usage

From source file org.codehaus.grepo.core.config.GenericRepositoryBeanDefinitionScanner.java

/**
 * @author dguggi
 */
public class GenericRepositoryBeanDefinitionScanner extends ClassPathScanningCandidateComponentProvider {

    /**

From source file com.ethercis.servicemanager.service.ServiceClassScanner.java

public class ServiceClassScanner extends ClassPathScanningCandidateComponentProvider {

    public ServiceClassScanner() {
        super(false);
        addIncludeFilter(new AnnotationTypeFilter(Service.class));
    }

From source file com.p5solutions.core.utils.ComponentClassScanner.java

/**
 * Component Scanner, for given annotation type.
 * 
 * @author Zvjezdan Guzijan
 */
public class ComponentClassScanner<T> extends ClassPathScanningCandidateComponentProvider {

From source file me.yanaga.winter.data.jpa.spring.config.RepositoryComponentProvider.java

class RepositoryComponentProvider extends ClassPathScanningCandidateComponentProvider {

    RepositoryComponentProvider() {
        super(false);
        super.addIncludeFilter(new InterfaceTypeFilter(Repository.class));
    }

From source file com.longio.spring.LioScanningCandidateComponentProvider.java

/**
 * @author zhu jinxian
 * @date  2016225
 * 
 */
public class LioScanningCandidateComponentProvider extends ClassPathScanningCandidateComponentProvider {

From source file org.web4thejob.util.converter.JobletScanner.java

/**
 * @author Veniamin Isaias
 * @since 3.5.0
 */
public class JobletScanner extends ClassPathScanningCandidateComponentProvider {
    private static final Logger LOG = Logger.getLogger(JobletScanner.class);

From source file com.github.ljtfreitas.restify.spring.configure.RestifyableTypeScanner.java

public class RestifyableTypeScanner extends ClassPathScanningCandidateComponentProvider {

    public RestifyableTypeScanner() {
        super(false);
        super.addIncludeFilter(new RestifyTypeFilter());
    }

From source file com.mmnaseri.couteau.maven.resource.ClassPathScanningClassProvider.java

/**
 * This class extends the functionality of {@link org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider}
 * to enable dependent classes to extract classes from the classpath
 *
 * It also allows for exploration of JAR files inside the classpath of the project
 *

From source file com.agileapes.couteau.maven.resource.ClassPathScanningClassProvider.java

/**
 * This class extends the functionality of {@link org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider}
 * to enable dependent classes to extract classes from the classpath
 *
 * It also allows for exploration of JAR files inside the classpath of the project
 *

From source file ar.com.zauber.commons.web.uri.factory.AnnotationExpressionMapUriFactoryFactoryBean.java

/**
 * Crea un {@link ExpressionMapUriFactory} buscando anotaciones {@link UriExpression}
 * en los metodos de las clases que pertenecen a los paquetes #setp 
 * 
 * 
 * @author Juan F. Codagnone