0

IBM Liberty Profile 18.0.0.1 で EJB プログラマチック・タイマーを使用しようとしました。ここに私のservice.xmlがあります:

<feature>ejbLite-3.2</feature>
......
<ejbContainer>
 <timerService nonPersistentMaxRetries="3" nonPersistentRetryInterval="10" />
</ejbContainer>

そして、これが私の最低限のコード スニペットです。

@Stateless
public class BatchSubmissionTimer {
private static final Logger LOGGER = 
Logger.getLogger(BatchSubmissionTimer.class.getName());

@Resource
TimerService timerService;

private Date lastProgrammaticTimeout;

public void setTimer(long intervalDuration) {
    LOGGER.info("Setting a programmatic timeout for "
            + intervalDuration + " milliseconds from now.");
    Timer timer = timerService.createTimer(intervalDuration,
            "Created new programmatic timer");
}

@Timeout
public void programmaticTimeout(Timer timer) {
    this.setLastProgrammaticTimeout(new Date());
    LOGGER.info("Programmatic timeout occurred.");
}

public String getLastProgrammaticTimeout() {
    if (lastProgrammaticTimeout != null) {
        return lastProgrammaticTimeout.toString();
    } else {
        return "never";
    }

}

public void setLastProgrammaticTimeout(Date lastTimeout) {
    this.lastProgrammaticTimeout = lastTimeout;
}

}

これは、クライアントがタイマーを呼び出す方法です。

BatchSubmissionTimer batchSubmissionTimer = new BatchSubmissionTimer();
batchSubmissionTimer.setTimer(5000);

ただし、挿入された TimerService でポインター以外のエラーが発生しました。TimerService が正常に挿入されませんでした。誰かがこれにいくつかの光を当てることができますか? 感謝します!

4

1 に答える 1