请教老师 这个注解@EnableScheduling 可以放在Service类或者impl类吗?
来源:6-5 线程池可选择的阻塞队列

慕函数0552834
2020-08-13
@EnableScheduling
public interface TestService {}
或者
@EnableScheduling
@Service
public class TestServiceImpl implements TestService {}
写回答
1回答
-
张小喜
2020-08-14
不可以,这样的注解都是配置相关的,所以要放到配置类中
00
相似问题