我想在weblogic中安排一个每天晚上运行的java程序,你能帮忙吗?
Ee 可以使用线程来做到这一点,但我认为这不是有效的方式。
WebLogic 11g 是符合 Java EE 5 的应用服务器。所以你可以使用TimerService
:
@Singleton
public class TimerSessionBean {
@Resource
TimerService timerService;
@Schedule(minute="0", hour="1")
public void atOneInTheNight() {
// Do stuff
}
}
我会选择 Quartz Scheduler。http://quartz-scheduler.org/