Example usage for org.springframework.core Ordered interface-usage

List of usage examples for org.springframework.core Ordered interface-usage

Introduction

In this page you can find the example usage for org.springframework.core Ordered interface-usage.

Usage

From source file org.springframework.cloud.netflix.eureka.server.EurekaServerInitializerConfiguration.java

/**
 * @author Dave Syer
 *
 */
@Configuration
@EnableConfigurationProperties(EurekaServerConfigBean.class)

From source file org.springframework.cloud.netflix.eureka.serviceregistry.EurekaAutoServiceRegistration.java

/**
 * @author Dave Syer
 * @author Spencer Gibb
 * @author Jon Schneider
 * @author Jakub Narloch
 */

From source file org.springframework.cloud.netflix.zuul.filters.SimpleRouteLocator.java

/**
 * Simple {@link RouteLocator} based on configuration data held in {@link ZuulProperties}.
 *
 * @author Dave Syer
 */
public class SimpleRouteLocator implements RouteLocator, Ordered {

From source file org.springframework.cloud.sleuth.instrument.web.TraceWebFilter.java

/**
 * A {@link WebFilter} that creates / continues / closes and detaches spans for a reactive
 * web application.
 *
 * @author Marcin Grzejszczak
 * @since 2.0.0

From source file org.springframework.cloud.task.batch.handler.TaskJobLauncherCommandLineRunner.java

/**
 * {@link CommandLineRunner} to {@link JobLauncher launch} Spring Batch jobs. Runs all
 * jobs in the surrounding context by default and throw an exception upon the
 * first job that returns an {@link ExitStatus} of FAILED.
 * Can also be used to launch a specific job by providing a jobName. The
 * TaskJobLaunchercommandLineRunner takes the place of the

From source file org.springframework.cloud.task.batch.listener.EventEmittingChunkListener.java

/**
 *  Provides informational messages around the {@link org.springframework.batch.core.step.item.Chunk} of a batch job.
 *
 *  The {@link ChunkListener#beforeChunk(ChunkContext)} and
 *  {@link ChunkListener#afterChunk(ChunkContext)} are both no-ops in this implementation.
 *  {@link ChunkListener#afterChunkError(ChunkContext)}.

From source file org.springframework.data.document.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter.java

/**
 * Implementation of the {@link org.springframework.web.servlet.HandlerAdapter} interface
 * that maps handler methods based on HTTP paths, HTTP methods and request parameters
 * expressed through the {@link RequestMapping} annotation.
 * <p/>
 * <p>Supports request parameter binding through the {@link RequestParam} annotation.

From source file org.springframework.data.hadoop.fs.CustomResourceLoaderRegistrar.java

/**
 * Utility class that overrides the built-in {@link ResourceEditor} to allow
 * {@link HdfsResourceLoader} to be searched first. Also sets {@code ResourceLoader}
 * for the Application context.
 *
 * @author Costin Leau

From source file org.springframework.integration.handler.AbstractMessageHandler.java

/**
 * Base class for MessageHandler implementations that provides basic validation
 * and error handling capabilities. Asserts that the incoming Message is not
 * null and that it does not contain a null payload. Converts checked exceptions
 * into runtime {@link MessagingException}s.
 * 

From source file org.springframework.integration.handler.DelayHandler.java

/**
 * A {@link MessageHandler} that is capable of delaying the continuation of a
 * Message flow based on the presence of a delay header on an inbound Message
 * or a default delay value configured on this handler. Note that the
 * continuation of the flow is delegated to a {@link TaskScheduler}, and
 * therefore, the calling thread does not block. The advantage of this approach