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);
}
}

浙公网安备 33010602011771号