我有以下课程:
import javax.annotation.PostConstruct;
import javax.annotation.Resource;
import javax.ejb.Singleton;
import javax.ejb.Startup;
import javax.ejb.Timeout;
import javax.ejb.Timer;
import javax.ejb.TimerConfig;
import javax.ejb.TimerService;
import javax.inject.Inject;
import com.mysite.Config;
@Startup
@Singleton
public class Scheduler {
@Resource
private TimerService timerService;
@Inject @Config
private Logger log;
@Inject @Config
private Integer delay;
@Inject @Config
private Integer interval;
@Inject @Config
private Boolean enabled;
@PostConstruct
public void initTimer() {
if (enabled) {
TimerConfig tc = new TimerConfig();
tc.setPersistent(false);
timerService.createIntervalTimer(delay, interval, tc);
}
}
@Timeout
public void timeout(Timer timer) {
// do something
}
}
包结构:
在部署到JBoss 7.1.1时,此类的initTimer方法总是被调用两次,这会导致每次调用超时两次。
我已经从here和here知道这是JBoss中的一个错误(据说它固定在7.1.1但显然不是)。我的问题是 - 有没有人知道我可以用来阻止@PostConstruct方法的双重执行的任何解决方法(我有更多这样的类,它们都有相同的问题)?
我已经看到了更多这样的问题,但它们都与一些REST库或Spring和CDI初始化bean连接了两次 - 这不是这里的情况。
感谢任何帮助,谢谢。
答案 0 :(得分:0)
事实证明这是应用程序打包的一个问题,第二个应用程序在下面,它的'xml配置再次被拾取,导致对象被构造两次。我的不好,多亏了@hwellmann的提示。