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.
我有一个 servlet 类正在访问通过休息公开的 url。我必须以 2 -3 分钟的间隔连续调用它,并将响应保存在堆栈中。我认为,我必须借助线程机制来做到这一点。最好的方法是什么?
一种选择是使用 TimerTask: Timer shedule
TimerTask -- 可以由 Timer 安排一次或重复执行的任务
问候,
您可以使用计时器。只需扩展TimerTask并将其传递给 Timer。如果您希望任务在应用程序启动时启动,您可以编写一个 ServletContextListener 来安排任务。