간단한 시간제 작업 예시 데모 만들기

3488 단어
잔말 말고 바로 코드로 올라가세요.
controller:
@Controller
@EnableScheduling
public class SchedulingUtil {

    @Autowired
    private ceshi ceshi;

    private static final SimpleDateFormat date=new SimpleDateFormat("HH:mm:ss");

    @Scheduled(cron = "0/10 * * * * ?")
    public void testTasks(){
        ceshi.ceshi();
        System.out.println("      :"+date.format(new Date()));
    }

}

비즈니스 계층 서비스:
@Service
public class ceshi{

    public void ceshi(){
        System.out.println(11111);
        //     
    }

}

springboot 항목 주의**@EnableScheduling** 주석이 없으면 이 주석이 성공하지 못합니다

좋은 웹페이지 즐겨찾기