自定义实现简易定时任务
Posted mosicol
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义实现简易定时任务相关的知识,希望对你有一定的参考价值。
#!/bin/bash ms=`date +%-H%M` if ((10#$1 <= 10#$ms));then echo "future time,please" exit 0 fi while ((10#$1 != 10#$ms)) do ms=`date +%H%M` if ((10#$1-10#$ms>1));then sleep 59s else sleep 1s fi done jmeter -n -t $2 -l $1.jtl -j $1.log
以上是关于自定义实现简易定时任务的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot使用SchedulingConfigurer实现多个定时任务多机器部署问题
Java:自定义ScheduledExecutorService来实现定时提交任务
手写实现自定义简易版Spring (实现IoC 和 AOP)