package com.hbbh.adapter.schedule; //@Configuration //@EnableScheduling public class Task { /** * 间隔5秒 执行一次 */ //@Scheduled(cron = "0/5 * * * * ?") //@Scheduled(fixedRate=30000) private void task01() throws Exception { //dataSource.execute(); } }