定时任务使用场景一般为指定时间做数据统计,临时数据清理等等。
单节点部署的服务一般是通过下面方式实现即可:
@SpringBootApplication
@EnableScheduling
public class PlatformApplication{}
@Component
@Slf4j
public class ScheduledServer {
@Scheduled(cron = "0 0 1 * * ?")
public void insertStatData() {
log.info("-------------凌晨1点统计前一天的业务数据量--------------
}
}
以上的配置如果是在服务需要部署多个节点的时候会出现重复执行定时任务导出数据重复的问题,这个时候可以通过分布式锁或使用xxx-job分布式任务调度平台避免这个任务重复执行的问题。
常用的三种实现如下
详细信息参考我写的这篇博客: 点我跳转
本文使用aop+redis优雅的使用分布式锁避免定时任务重复执行。
org.springframework.boot
spring-boot-starter-data-redis
org.aspectj
aspectjweaver
1.9.4
@Target({ElementType.PARAMETER, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface RedisLock {
/**
* 锁的名称(唯一标识),可选为""时候使用方法的名称
*/
String name() default "";
/**
* 重试重获取锁的次数,默认0 不重试
*/
int retry() default 0;
/**
* 占有锁的时间,避免程序宕机导致锁无法释放
*/
int expired() default 60;
}
@Aspect
@Slf4j
@Component
public class RedisLockPointcut {
@Autowired
private StringRedisTemplate stringRedisTemplate;
@Pointcut("@annotation(com.ljm.boot.distributedjob.annotation.RedisLock)")
public void redisLockPointCut() {
}
@Around("redisLockPointCut()")
public Object doAround(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
Method method = currentMethod(proceedingJoinPoint);
//获取到方法的注解对象
RedisLock redisLock = method.getAnnotation(RedisLock.class);
//获取锁的名称
String methodName = redisLock.name();
if (!StringUtils.hasLength(methodName)) {
//如果注解里没有设置锁的名称,默认使用方法的名称
methodName = method.getName();
}
//获取到锁的标识
boolean flag = true;
int retryCount = redisLock.retry();
do {
if (!flag && retryCount > 0) {
Thread.sleep(1000L);
retryCount--;
}
flag = stringRedisTemplate.opsForValue().setIfAbsent(methodName, "1", redisLock.expired(), TimeUnit.SECONDS);
if (flag) {
//获取到锁结束循环
break;
}
//根据配置的重试次数,执行n次获取锁的方法,默认不重试
} while (retryCount > 0);
//result为连接点的返回结果
Object result = null;
if (flag) {
try {
result = proceedingJoinPoint.proceed();
} catch (Throwable e) {
/*异常通知方法*/
log.error("异常通知方法>目标方法名{},异常为:{}", method.getName(), e);
} finally {
stringRedisTemplate.delete(methodName);
}
return result;
}
log.error("执行:{} 未获取锁,重试次数:{}", method.getName(), redisLock.retry());
return null;
}
/**
* 根据切入点获取执行的方法
*/
private Method currentMethod(JoinPoint joinPoint) {
String methodName = joinPoint.getSignature().getName();
//获取目标类的所有方法,找到当前要执行的方法
Method[] methods = joinPoint.getTarget().getClass().getMethods();
Method resultMethod = null;
for (Method method : methods) {
if (method.getName().equals(methodName)) {
resultMethod = method;
break;
}
}
return resultMethod;
}
}
@Slf4j
@Component
public class RedisLockScheduled {
/**
* 每分钟执行一次任务,设置分布式锁的名称insertStatData,过期时间为30秒,重试次数为3次
*/
@Scheduled(cron = "0 */1 * * * ?")
@RedisLock(name="insertStatData",expired = 30,retry = 3)
//@RedisLock 也可以不设置属性直接使用,默认分布锁的名称以函数名insertStatData命名,expired和retry用注解定义时候的默认值
public void insertStatData() {
try {
//模拟业务处理线程休眠10秒
Thread.sleep(10000L);
}catch (Exception e){
e.printStackTrace();
}
log.info("-------------每分钟打印一次日志--------------");
}
}
使用8031端口和8032端口启动服务两次,等运行一段时间可以看到同一时间端只有一个服务执行了定时任务内的逻辑。
由上面图片中日志可以看到基于分布式锁可以控制只有一个节点可以执行任务。
xxx-job的github地址
本文使用的是2.3.1分支的代码。
1.xxl-job默认使用的mysql数据库,需要先手动创建名称为xxl_job的数据库
5.启动xxl-job-admin项目后用 http://localhost:8080/xxl-job-admin/ 访问后台
账号: admin
密码: 123456
上图中的JobHandler填写为xxlJobTask在执行端的代码里需要用到
com.xuxueli
xxl-job-core
2.3.1
xxlJob:
#xxl-job服务端配置文件中定义好的token
accessToken: default_token
#xxl-job服务端地址(用于注册执行器使用)
adminAddresses: http://127.0.0.1:8080/xxl-job-admin
executor:
# 执行器AppName [选填]:执行器心跳注册分组依据;为空则关闭自动注册
appname: testJob
# 执行器IP [选填]:默认为空表示自动获取IP,多网卡时可手动设置指定IP
ip:
# 执行器端口号 [选填]:小于等于0则自动获取;默认端口为9999
port: 0
# 执行器运行日志文件存储磁盘路径 [选填]
logpath: logs/xxlJob
# 执行器日志文件保存天数 [选填] : 过期日志自动清理, 限制值大于等于3时生效; -1关闭自动清理功能;
logretentiondays: 5
@Slf4j
@Configuration
public class XxlJobConfig {
@Value("${xxlJob.accessToken}")
private String accessToken;
@Value("${xxlJob.adminAddresses}")
private String adminAddresses;
@Value("${xxlJob.executor.appname}")
private String appName;
@Value("${xxlJob.executor.ip}")
private String ip;
@Value("${xxlJob.executor.port}")
private int port;
@Value("${xxlJob.executor.logpath}")
private String logPath;
@Value("${xxlJob.executor.logretentiondays}")
private int logRetentionDays;
@Bean
public XxlJobSpringExecutor xxlJobExecutor() {
log.info("*****************xxlJobExecutor bean init*****************");
XxlJobSpringExecutor xxlJobSpringExecutor = new XxlJobSpringExecutor();
xxlJobSpringExecutor.setAdminAddresses(adminAddresses);
xxlJobSpringExecutor.setAppname(appName);
xxlJobSpringExecutor.setIp(ip);
xxlJobSpringExecutor.setPort(port);
xxlJobSpringExecutor.setAccessToken(accessToken);
xxlJobSpringExecutor.setLogPath(logPath);
xxlJobSpringExecutor.setLogRetentionDays(logRetentionDays);
return xxlJobSpringExecutor;
}
}
@Component
public class XxlJobScheduled {
@XxlJob("xxlJobTask")
public ReturnT<String> xxlJobTest(String date) {
XxlJobContext xxlJobContext = XxlJobContext.getXxlJobContext();
String jobParam = xxlJobContext.getJobParam();
try {
//模拟业务处理线程休眠10秒
Thread.sleep(10000L);
}catch (Exception e){
e.printStackTrace();
}
log.info("xxlJobTest定时任务执行成功,jobParam:{}",jobParam);
return ReturnT.SUCCESS;
}
}
运行一段时间观察日志打印情况
由上面图片中日志可以看到只有一个节点可以执行任务。
gitee代码地址
创作不易,要是觉得我写的对你有点帮助的话,麻烦在gitee上帮我点下 Star
【SpringBoot框架篇】其它文章如下,后续会继续更新。