java.util.concurrent

发布于 2024-07-08 21:46:40 字数 295 浏览 6 评论 0原文

我试图启动 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

淡墨 2024-07-15 21:46:41

感谢您的回复,其 executorServicenull。 我使用 Spring 来注入属性。

thanks for the reply, its the executorService that is null. Im using Spring to inject the property.

海之角 2024-07-15 21:46:40

您是否在调用 execute() 之前检查 executorService 是否为 null? 如果没有,听起来您需要检查 WebSphere 文档。

Are you checking whether executorService is null before calling execute()? If not, it sounds like you need to check the WebSphere docs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文