我有一个 Spring Boot 应用程序,它使用 @Scheduled 每 500μs 获取一次数据库中的数据。我的一个朋友劝阻我说这是一种不当行为。这是我的示例代码:
@Scheduled(fixedRate = 500)
@Override
public void sync() {
departments.setAll((Collection<? extends Department>) departmentRepository.findAll());
sections.setAll((Collection<? extends Section>) sectionRepository.findAll());
positions.setAll((Collection<? extends Position>) positionRepository.findAll());
}
我的应用程序运行良好,但我唯一担心的是天气这是一个好习惯吗?优缺点都有什么?
幕布斯6054654
相关分类