在 Glassfish 中,EJB 事务超时默认设置为 120 秒,我想更改此值。
我知道可以通过在 glassfish-ejb-jar.xml 中定义“cmt-timeout-in-seconds”参数来更改它,但是我使用带有 EJB 类的 Web 模块,并使用 glassfish-web.xml分别。
有没有办法改变超时?
UPD:
事务服务设置中的事务超时值无效。
@Schedule(minute = "*/5", hour = "*", persistent = false)
public void doSomething() {
log.info("Started");
try {
Thread.sleep(1000 * 119);
} catch (InterruptedException ex) {
log.info("Interrupted", ex);
}
log.info("Finished");
}
上面的代码工作正常。但是如果将睡眠时间改为 121 秒
Thread.sleep(1000 * 121);
在 GF 服务器日志中,我看到一个错误:
Warning: EJB5123:Rolling back timed out transaction
此后,服务再次调用 doSomething() 方法,2 分钟后我再次看到错误:
Warning: EJB5123: Rolling back timed out transaction
Info: EJB5119:Expunging timer [...] after [2] failed deliveries
并且服务不再调用 doSomething() 方法。