@Component
public class QuartzService {
//? ? 上一次 啟動時(shí)間點(diǎn)之后 X秒執(zhí)行一次
? ? @Scheduled(fixedRate =5000)
public void timerToZZP(){
System.out.println("ZZP:" +new Random().nextLong() +new SimpleDateFormat("HH:mm:ss").format(new Date()));
? ? }
}