Example usage for org.springframework.context.annotation DeferredImportSelector interface-usage

List of usage examples for org.springframework.context.annotation DeferredImportSelector interface-usage

Introduction

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

Usage

From source file be.ordina.msdashboard.config.MicroservicesDashboardServerImportSelector.java

/**
 * Defers our {@code @Configuration}-classes imports to process after normal @Configuration-classes
 *
 * @author Andreas Evers
 */
public class MicroservicesDashboardServerImportSelector implements DeferredImportSelector {

From source file de.codecentric.boot.admin.config.AdminServerImportSelector.java

/**
 * Defers the imports for our {@code @Configuration}-classes, because the need to be processed after
 * normal @Configuration-classes.
 *
 * @author Johannes Edmeier
 */

From source file at.porscheinformatik.common.spring.web.extended.config.SpringWebExtendedImportSelector.java

/**
 * @author Daniel Furtlehner
 * 
 */
@Order(Ordered.LOWEST_PRECEDENCE)
public class SpringWebExtendedImportSelector implements DeferredImportSelector {

From source file com.consol.citrus.samples.todolist.bean.TodoImportSelector.java

/**
 * @author Christoph Deppisch
 */
public class TodoImportSelector implements DeferredImportSelector {

    @Override

From source file io.gravitee.gateway.handlers.api.http.client.spring.HttpClientConfigurationImportSelector.java

/**
 * @author David BRASSELY (david at gravitee.io)
 * @author GraviteeSource Team
 */
public class HttpClientConfigurationImportSelector implements DeferredImportSelector {

From source file org.springframework.cloud.commons.util.SpringFactoryImportSelector.java

/**
 * Selects configurations to load defined by the generic type T. Loads implementations
 * using {@link SpringFactoriesLoader}.
 *
 * @author Spencer Gibb
 * @author Dave Syer

From source file org.springframework.boot.autoconfigure.AutoConfigurationImportSelector.java

/**
 * {@link DeferredImportSelector} to handle {@link EnableAutoConfiguration
 * auto-configuration}. This class can also be subclassed if a custom variant of
 * {@link EnableAutoConfiguration @EnableAutoConfiguration} is needed.
 *
 * @author Phillip Webb