Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Spring 3.0 中,计划任务方法是否@Scheduled已使用事务性注释?如果没有,注释与工作相同的方法@Transactional吗?也就是说,调度程序会尊重事务注释吗?
@Scheduled
@Transactional
据我所知,答案是否定的,@Scheduled不关心交易。手动添加@Transactional,它应该可以工作(你也可以通过启用调试消息和观察日志来自己检查)。