JFinal Cron4jPlugin笔记

//记得加入jar包

public class Cron4Test {
public static void main(String[] args) throws InterruptedException {
Cron4jPlugin cp = new Cron4jPlugin();
cp.addTask("* * * * *",new Runnable() {

public void run() {
// TODO Auto-generated method stub

}
});
cp.start();
Thread.sleep(Integer.MAX_VALUE);
}
}

 

 

详情https://jfinal.com/doc/9-2

posted @ 2020-08-05 19:00  迷糊的小菜鸟  阅读(392)  评论(0)    收藏  举报