欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

EJB中的定时服务

程序员文章站 2024-02-22 21:56:12
...
仅上传图片一张

timer.createTimer(new Date(new Date().getTime() + 10000), 5000, null);

参数一:定时器启动时间 Date

参数二:启动时间间隔

参数三:传入内容,为序列化对象

	@Timeout
public void TimeoutMethod(Timer timer) {
//.....
timer.cancel();
}
相关标签: EJB Java

上一篇: EJB下remote not bound 错误

下一篇: