19 lines
393 B
Java
19 lines
393 B
Java
package com.bwie.system.service;
|
|
|
|
import org.springframework.scheduling.annotation.Scheduled;
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
@Component
|
|
public class ScheduledPrintNameService {
|
|
|
|
/**
|
|
* 每隔5秒输出自己的一次名字
|
|
*/
|
|
@Scheduled(cron = "0/5 * * * * ?")
|
|
public void scheduledPrintNameService(){
|
|
System.out.println("张承志");
|
|
}
|
|
|
|
}
|