2018年5月18日
摘要: 定时任务,异步任务 一、定时任务 1、步骤: 1:在启动类上写@EnableScheduling注解 2:在要定时任务的类上写@component 3:在要定时执行的方法上写@Scheduled(fixedRate=毫秒数)。 2、示例 主类 @SpringBootApplication @Enab 阅读全文
posted @ 2018-05-18 23:21 雨点的名字 阅读(14840) 评论(0) 推荐(3) 编辑
摘要: Springboot整合redis 步骤讲解 1、第一步jar导入: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </ 阅读全文
posted @ 2018-05-18 21:57 雨点的名字 阅读(4399) 评论(0) 推荐(3) 编辑