@PostConstruct在JBoss 7上使用@Singleton和@Startup在类中执行了两次

时间:2014-01-14 20:22:18

标签: java java-ee jpa jboss cdi

我有以下课程:

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
    }
}

包结构:

  • 的java
    • dataloaders(这里是有问题的课程)
    • 其他套餐
  • 资源
    • META-INF,config等

在部署到JBoss 7.1.1时,此类的initTimer方法总是被调用两次,这会导致每次调用超时两次。

我已经从herehere知道这是JBoss中的一个错误(据说它固定在7.1.1但显然不是)。我的问题是 - 有没有人知道我可以用来阻止@PostConstruct方法的双重执行的任何解决方法(我有更多这样的类,它们都有相同的问题)?

我已经看到了更多这样的问题,但它们都与一些REST库或Spring和CDI初始化bean连接了两次 - 这不是这里的情况。

感谢任何帮助,谢谢。

1 个答案:

答案 0 :(得分:0)

事实证明这是应用程序打包的一个问题,第二个应用程序在下面,它的'xml配置再次被拾取,导致对象被构造两次。我的不好,多亏了@hwellmann的提示。