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 MVC 和 Hibernate 时,是否有延迟方法执行的最佳方法?当方法B返回false时,我只需要延迟方法A执行一个小时。我只能想到Thread.sleep(3600000);
Thread.sleep(3600000);
谢谢你。
对我来说,这听起来像是一个糟糕的设计。
如果我是你,我会看看Quartz之类的库并重新设计任务以正确使用调度程序。
这比将当前线程休眠一小时要好得多。