定时任务

定时任务只对 MarsBean有效,对API和DAO无效

使用方法如下:

在需要定时执行的的方法上添加MarsTimer注解

  1. @MarsTimer(loop = 1000)
  2. public void testTimer(){
  3. System.out.println("执行了定时任务");
  4. }

loop为频率,单位毫秒

注意:要添加定时任务的方法,不可以有参数