Example usage for org.springframework.boot ApplicationRunner interface-usage

List of usage examples for org.springframework.boot ApplicationRunner interface-usage

Introduction

In this page you can find the example usage for org.springframework.boot ApplicationRunner interface-usage.

Usage

From source file sample.EmbeddedMongoPortLogger.java

@Component
class EmbeddedMongoPortLogger implements ApplicationRunner, EnvironmentAware {

    private static final Logger logger = LoggerFactory.getLogger(EmbeddedMongoPortLogger.class);

    private Environment environment;

From source file io.schultz.dustin.runner.VideoDownloaderLatestRunner.java

@Component
public class VideoDownloaderLatestRunner implements ApplicationRunner {

    private static final Logger log = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());

    @Inject

From source file ac.simons.tweetarchive.Application.java

/**
 * @author Michael J. Simons, 2016-09-05
 */
@SpringBootApplication
@SuppressWarnings({ "checkstyle:designforextension" })
public class Application implements ApplicationRunner {

From source file com.intuit.karate.demo.config.ServerStartedInitializingBean.java

/**
 *
 * @author pthomas3
 */
@Component
public class ServerStartedInitializingBean

From source file org.eclipse.hono.service.AbstractApplication.java

/**
 * A base class for implementing Spring Boot applications.
 * <p>
 * This class requires that an instance of {@link ObjectFactory} is provided
 * ({@link #addServiceFactories(Set)} for each service to be exposed by this application.
 */

From source file com.crossover.trial.weather.util.AirportLoader.java

@Service
public class AirportLoader implements ApplicationRunner {

    private static final Logger log = LoggerFactory.getLogger(AirportLoader.class);

    @Autowired

From source file io.syndesis.image.Application.java

@SpringBootApplication(exclude = { DaoConfiguration.class, ConnectorCatalogConfiguration.class,
        ProjectGeneratorConfiguration.class })
public class Application implements ApplicationRunner {

    @Value("${to:image}")
    private String to;

From source file com.blackducksoftware.integration.hub.detect.Application.java

public class Application implements ApplicationRunner {
    private final Logger logger = LoggerFactory.getLogger(Application.class);

    private ConfigurableEnvironment environment;

    @Autowired

From source file com.synopsys.detect.doctor.DoctorApplication.java

@SpringBootApplication
public class DoctorApplication implements ApplicationRunner {
    private final Logger logger = LoggerFactory.getLogger(this.getClass());

    private ConfigurableEnvironment configurableEnvironment;

From source file com.thinkbiganalytics.spark.shell.AbstractProcessManager.java

/**
 * Manages multiple Kylo Spark Shell processes.
 *
 * <p>A unique username and password is generated for each process to communicate with the Kylo Services process.</p>
 */
public abstract class AbstractProcessManager implements ApplicationRunner, SparkShellClusterDelegate,