`@EnableScheduling` 是 Spring Boot 中用来开启定时任务的注解。它可以被用于任何标注了 `@Component` 或 `@Configuration` 注解的类中,表示该类中定义的 `@Scheduled` 注解的方法将会被自动注册为一个调度任务。
在使用 `@EnableScheduling` 注解之前,需要确认以下几点:
1. 依赖项:Spring Boot 应用程序中必须包含 `spring-boot-starter-web` 或 `spring-boot-starter` 依赖项。
2. 内部执行器线程池:Spring Boot 会创建一个内部执行器线程池,用于调度定时任务,并且这个线程池基于 `TaskExecutor` 接口。默认情况下,这个线程池会启动一个单独的线程,但是你也可以通过 `ThreadPoolTaskExecutor` 类进行自定义配置。
3. 执行方法的线程安全性:被 `@Scheduled` 注解的方法必须是线程安全的,因为它们可能在多个线程中执行。
下面是一个使用 `@EnableScheduling` 和 `@Scheduled` 注解的例子:
```java
import org.springframework.scheduling.annotation.EnableScheduling;
import org.springframework.scheduling.annotation.Scheduled;
import org.springframework.stereotype.Component;
@Component
@EnableScheduling
public class MyScheduler {
@Scheduled(fixedDelay = 5000)
public void printMessage() {
System.out.println("Hello, World!");
}
}
```
在这个例子中,我们创建了一个名为 `MyScheduler` 的组件,并在其类上添加了 `@Component` 注解。同时,我们还在 `MyScheduler` 类上添加了 `@EnableScheduling` 注解,表示该类中的 `@Scheduled` 注解的方法都是调度任务。
接着,我们定义了一个名为 `printMessage` 的方法,并在其上添加了 `@Scheduled` 注解。该注解代表每 5 秒钟执行一次这个方法,并打印一条 “Hello, World!” 的信息。这个方法就是一个定时任务。
- 环境配置
- window怎么配置java环境变量?
- Java基础语法
- Java中的数据类型
- Java中的JSONObject
- Java高级特性
- Maven
- jib-maven-plugin
- 什么是Spring Boot 的 parent pom?
- maven中各个生命周期的含义
- Spring Boot
- maven与spring boot 的关系
- 配置文件
- application-properties配置文件
- Spring Boot 的启动
- spring boot项目如何启动?
- 列举一下Spring Boot的启动过程
- SpringApplication.run方法
- Spring Boot 启动时有哪些接口?
- CommandLineRunner
- Spring Boot 的常用注解
- 系统注解
- 表格:系统注解
- @Override
- @Deprecated
- @SuppressWarnnings
- 使用在类名上的注解
- 表格:使用在类名上的注解
- @RestController
- @Controller
- @Service
- @Repository
- @Component
- @Configuration
- @Resource
- @Autowired
- @RequestMapping
- @PostMapping
- @GetMapping
- @Transactional
- @Qualifier
- 使用在方法上的注解
- 表格:使用在方法上的注解
- @RequestBody
- @PathVariable
- @Bean
- @ResponseBody
- @PreAuthorize
- 其他常用注解
- 表格:其他常用注解
- @EnableAutoConfiguration
- @SpringBootApplication
- @EnableScheduling
- @EnableAsync
- @ComponentScan
- @Aspec
- @ControllerAdvice
- @ExceptionHandler
- @Value
- @ConfigurationProperties
- @EnableConfigurationProperties
- @MapperScan
- Validator验证的常用注解
- spring IoC容器
- Spring IoC容器依赖注入实现方式
- MyBatis
- paginationInterceptor
- @TableName
- @TableId
- @Param
- UrlBasedCorsConfigurationSource
- Lombok
- @Data
- @Slf4j
- @EqualsAndHashCode
- @Accessors
- 支付系统
- 1. 初始化mysql数据库流程
- 2. 初始化redis数据库的流程
- 3. 初始化rabbitmq服务