java.util.concurrent
我试图启动 Runnable 类的 run 方法,但是我不断收到 NullPointerException,我使用 WebSpheres commonj.workmanager 来获取 executorService 的实例。这是我使用的代码。
executorService.execute(new Runnable() {
public void run() {
System.out.println("Inside run ()method..");
}
});
ANY IDEAS?
im trying to kick off a Runnable classes run method however i keep getting a NullPointerException, Im using WebSpheres commonj.workmanager to get an instance of executorService.this is the code im using.
executorService.execute(new Runnable() {
public void run() {
System.out.println("Inside run ()method..");
}
});
ANY IDEAS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
感谢您的回复,其
executorService
为null
。 我使用 Spring 来注入属性。thanks for the reply, its the
executorService
that isnull
. Im using Spring to inject the property.您是否在调用
execute()
之前检查executorService
是否为 null? 如果没有,听起来您需要检查 WebSphere 文档。Are you checking whether
executorService
is null before callingexecute()
? If not, it sounds like you need to check the WebSphere docs.