我开始使用Play框架我想编写一个能够进行一定数量ws调用的工作。
我写了两个课程如下:
@Singleton
public class AutoGateJob {
@Inject
private ActorSystem actorSystem;
@Inject
private ExecutionContext executionContext;
@Inject
private RgsDataServiceServices rgsDataServiceServices;
@Inject
public AutoGateJob(ApplicationLifecycle lifecycle, ActorSystem system, ExecutionContext
context) {
Logger.info("### create autojob");
this.actorSystem = system;
this.executionContext = context;
this.initialize();
lifecycle.addStopHook(() -> {
Logger.info("### c'est l'heure de rentrer!!!");
this.actorSystem.shutdown();
return CompletableFuture.completedFuture(null);
});
}
private void initialize() {
this.actorSystem.scheduler().schedule(
Duration.create(0, TimeUnit.SECONDS), // initialDelay
Duration.create(5, TimeUnit.SECONDS), // interval
() -> this.runAutoGateJobTasks(),
this.executionContext
);
}
private void runAutoGateJobTasks() {
Logger.info("## Run job every 5 seconds");
rgsDataServiceServices = new RgsDataServiceServices();
rgsDataServiceServices.findAllPaymentToSendHandler()
.handle((wsResponse, throwable) -> {
Logger.info("## find all payment to send response: ", wsResponse.asJson());
List<String> paymentsList = new ArrayList<>();
paymentsList.forEach(s -> {
Logger.info("## Processing payment: ", s);
});
return CompletableFuture.completedFuture(null);
});
}
}
和
public class AutoGateJobInitializer extends AbstractModule {
@Override
protected void configure() {
Logger.info("## Setup job on app startup!");
bind(AutoGateJob.class).asEagerSingleton();
}
}
问题是: Mys rgsDataServiceServices有一个工作的WSClient注入,当与控制器一起使用时效果很好但是在AutoGateJob中调用时我有空指针异常 ( [error] a.d.TaskInvocation - null java.lang.NullPointerException:null ) 我真的不明白发生了什么,但我需要我的工作才能这样做。
感谢您的帮助!
答案 0 :(得分:0)
您应该将所有依赖项注入构造函数中。你正在做的只是在构造函数中注入一些,然后你立即安排一个尝试使用所有依赖项的任务,但很有可能,该任务将在Guice注入所有依赖项之前运行。如果要确保所有依赖项都可用,请仅使用构造函数注入,即:
<link rel="import" href="../../bower_components/polymer/lib/elements/dom-repeat.html">
另外,你不应该添加一个生命周期钩子来关闭actor系统,Play已经注册了一个生命周期钩子来做到这一点。如果你愿意,你可以注册一个生命周期钩子来取消预定的任务,但我不认为这是真的有必要,因为它会在演员系统关闭时自动取消。