Example usage for org.springframework.scheduling.annotation SchedulingConfigurer interface-usage

List of usage examples for org.springframework.scheduling.annotation SchedulingConfigurer interface-usage

Introduction

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

Usage

From source file com.thinkbiganalytics.server.KyloServerApplication.java

@Configuration
@SpringBootApplication
@EnableAutoConfiguration(exclude = { VelocityAutoConfiguration.class })
@EnableConfigurationProperties
@EnableConfigServer
@Import({ DatabaseConfiguration.class, OperationalMetadataConfig.class, SpringJerseyConfiguration.class })

From source file io.lavagna.config.PersistenceAndServiceConfig.java

/**
 * Datasource configuration.
 */
@EnableWebSocketMessageBroker
@EnableTransactionManagement
@ComponentScan(basePackages = { "io.lavagna.service", "io.lavagna.config.dbmanager" })

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

@Configuration
@EnableScheduling
@EnableWebMvc
@Import(value = { SpringWebExtendedConfigurerConfig.class, ResourceScannerConfig.class,
        ExpressionHandlerConfig.class })
// TODO: maybe we should add a handlerinterceptor that adds no-cache headers

From source file de.blizzy.documentr.context.ContextConfig.java

/** Spring application context configuration. */
@Configuration
@EnableWebMvc
@EnableScheduling
@ComponentScan("de.blizzy.documentr")
@ImportResource({ "classpath:/applicationContext-security.xml", "classpath:/applicationContext-cache.xml" })

From source file org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration.java

/**
 * Exposes the {@link SessionRepositoryFilter} as a bean named
 * {@code springSessionRepositoryFilter}. In order to use this a single
 * {@link RedisConnectionFactory} must be exposed as a Bean.
 *
 * @author Rob Winch

From source file it.infn.mw.iam.config.saml.SamlConfig.java

@Configuration
@Order(value = Ordered.LOWEST_PRECEDENCE)
@Profile("saml")
@EnableConfigurationProperties({ IamSamlProperties.class, IamSamlJITAccountProvisioningProperties.class,
        IamProperties.class, ServerProperties.class })
@EnableScheduling