Why isn't Spring running my @Scheduled method?

前端 未结 8 1654
天涯浪人
天涯浪人 2020-12-29 03:18

I\'m a bit befuddled because I\'m trying use use @Scheduled annotations, but Spring doesn\'t seem to be finding my methods. The end result is that, none of my m

8条回答
  •  -上瘾入骨i
    2020-12-29 04:02

    This is pretty old question but since this keeps up coming in google search results let me add the solution that worked for me in Spring 5. For me it didn't work until I added @Component to the class having @Scheduled annotated methods.

提交回复
热议问题