springboot定时任务出错 Unexpected use of scheduler.

Posted james-roger

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot定时任务出错 Unexpected use of scheduler.相关的知识,希望对你有一定的参考价值。

java.lang.IllegalStateException: Unexpected use of scheduler.

在启动类加:

@Bean
    public ThreadPoolTaskScheduler taskScheduler()
        ThreadPoolTaskScheduler taskScheduler = new ThreadPoolTaskScheduler();
        taskScheduler.setPoolSize(10);
        taskScheduler.initialize();
        return taskScheduler;
    

 

以上是关于springboot定时任务出错 Unexpected use of scheduler.的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot的定时任务

SpringBoot的定时任务

SpringBoot入门 定时任务

springboot开启定时任务 添加定时任务 推送

jeesite 定时任务 或者springboot 执行定时任务

SpringBoot创建定时任务