我在用Java配置计时器时遇到了一些麻烦。准确地说-尝试部署peripherial.war时收到以下错误。

{"WFLYCTL0080: Failed services" => {"jboss.deployment.unit.\"peripherial.war\".WeldStartService" => "org.jboss.msc.service.StartException in service jboss.deployment.unit.\"peripherial.war\".WeldStartService: Failed to start service
    Caused by: org.jboss.weld.exceptions.DeploymentException: WELD-001408: Unsatisfied dependencies for type TimerService with qualifiers @Default
  at injection point [BackedAnnotatedParameter] Parameter 2 of [BackedAnnotatedConstructor] @Inject public io.github.tastypenguinbacon.peripherial.heartbeat.service.PassiveHeartbeatService(Cache, TimerService)
  at io.github.tastypenguinbacon.peripherial.heartbeat.service.PassiveHeartbeatService.<init>(PassiveHeartbeatService.java:0)
"},"WFLYCTL0412: Required services that are not installed:" => ["jboss.deployment.unit.\"peripherial.war\".WeldStartService"]}


standalone.xml文件似乎很好。负责配置计时器服务的部分(至少是我期望的)似乎也不错:

<timer-service thread-pool-name="default" default-data-store="default-file-store">
  <data-stores>
    <file-data-store name="default-file-store" path="timer-service-data" relative-to="jboss.server.data.dir"/>
  </data-stores>
</timer-service>


我正在通过@Inject实例化TimerService,并使用基于构造函数的注入(如果有关联的话)。
我正在使用wildfly-11.0.0.Alpha。默认standalone.xml文件中唯一更改的是能够访问服务器的IP地址。

最佳答案

TimerService是JEE应用程序服务器资源。 CDI无法自动对其进行@Inject编辑。获得它的方法(例如JEE tutorial)是:

@Resource
TimerService timerService;


这可能适合您的目的;如果您真的希望将其公开为CDI Bean,那么它是微不足道的。只需将@Resource字段也设置为生产者-您可以为此设置一个单独的类:

@ApplicationScoped
public class TimerServiceProducer {
    @Resource
    @Produces
    TimerService timerService;
}


我不确定@ApplicationScoped是否绝对必要,但也不会造成伤害。

09-27 17:50