jfinal-scheduler 的任务没有正常执行,求大神解决、、、、、、、

发布于 2021-11-27 13:19:14 字数 2040 浏览 743 评论 3

我是加载配置文件启动定时器的,

@Override
public void configPlugin(Plugins me) {
SchedulerPlugin sp = new SchedulerPlugin("job.properties");
Runnable task = new Task();
sp.fixedDelaySchedule(task, 10);
me.add(sp);


job.properties:

#是否启用该任务
testJob.enable=true
#任务类名
testJob.class=com.hongye.app.controller.Task
#每隔10秒(每分钟6次)执行一次
testJob.type=fixedRate
testJob.expr=10

task:

public class Task implements Runnable{
private static Logger log = Logger.getLogger(Task.class);
public void run() {
System.out.println(123);
System.err.println(456);
String sql = "selrct c_time as time from order_info order by time desc";
List<OrderInfoModel> order_list = OrderInfoModel.dao.find(sql);
if(log.isInfoEnabled()){log.info("order_list"+order_list);}
}
}
console:

456
123
456
123


2016-10-28 13:56:28
[INFO]-[Thread: localhost-startStop-1]-[com.jfinal.plugin.scheduler.SchedulerPlugin.loadJob()]: --------load job: testJob successfully--------


2016-10-28 13:56:29
[INFO]-[Thread: localhost-startStop-1]-[com.jfinal.plugin.scheduler.SchedulerPlugin.loadJob()]: class: com.hongye.app.controller.Task


2016-10-28 13:56:29
[INFO]-[Thread: localhost-startStop-1]-[com.jfinal.plugin.scheduler.SchedulerPlugin.loadJob()]: type : fixedRate


2016-10-28 13:56:29
[INFO]-[Thread: localhost-startStop-1]-[com.jfinal.plugin.scheduler.SchedulerPlugin.loadJob()]: expr : 10


2016-10-28 13:56:29
[INFO]-[Thread: localhost-startStop-1]-[com.jfinal.plugin.scheduler.SchedulerPlugin.loadJob()]: ----------------


2016-10-28 13:56:29
[INFO]-[Thread: localhost-startStop-1]-[com.jfinal.plugin.scheduler.SchedulerPlugin.start()]: SchedulerPlugin is started


2016-10-28 13:56:32
[INFO]-[Thread: localhost-startStop-1]-[com.alibaba.druid.pool.DruidDataSource.init()]: {dataSource-1} inited

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

小情绪 2021-12-03 14:48:20

我这边也是这种情况

#是否启用该任务
testJob.enable=true
#任务类名
testJob.class=com.dogu.timmer.testTimmer
#每隔10秒(每分钟6次)执行一次
testJob.type= fixedRate
testJob.expr= 1

泛滥成性 2021-12-03 13:31:58

你好, 我这边调试好了,谢谢你的代码

甜扑 2021-11-29 00:28:46

问题描述不清,从日志看执行了。输出了日志了。不知道为啥没有执行。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文