6

以下代码片段在独立模式下执行时不会引发任何错误。当我将它部署到 Web 服务器 [实现服务器的接口并作为 JAR 添加到类路径中] 时,我得到

 java.util.concurrent.ExecutionException: java.lang.NullPointerException
at java.util.concurrent.FutureTask$Sync.innerGet(Unknown Source)
at java.util.concurrent.FutureTask.get(Unknown Source)
at com.nbis.process.JSON_2_File_Split_V004.fn_1_parserEntity(JSON_2_File_Split_V004.java:256)
at com.nbis.process.JSON_2_File_Split_V004.fn_0_primaryCaller(JSON_2_File_Split_V004.java:177)
at com.nbis.process.JSON_2_File_Split_V004.execute(JSON_2_File_Split_V004.java:151)

代码片段:

this.callable = new JSON_3_File_Process_V005(this.originalFileName, this.inProgressDirLoc, this.processedDirLoc, "[" + jSONRecord.toString() + "]", this.dataMDHolder, this.dataAccIDValueMap, this.dataCountryNameValueMap);
String[] fullContent = null;    
try {
    fullContent = executor.submit(this.callable).get();
} catch (ExecutionException e) {
    StringWriter errors = new StringWriter();
    e.printStackTrace(new PrintWriter(errors));
    log.info("Srii: " + errors.toString());
    executor.shutdown();
    return 7;
    } 

将 get 的返回值添加到 ExecutorCompletionService 是一种选择,但这不会扼杀异步处理的概念吗?换句话说,我在 StringBuilder 中收集来自可调用 get 的输出字符串,并在 get 计数达到特定数字时存储到磁盘。将数据发送到磁盘后,我会刷新 StringBuilder。这样我就可以定期将数据推送到磁盘,而不必将它们保存在内存中。

关于我在这里做错了什么有什么建议吗?感谢任何输入。谢谢你。

4

2 回答 2

5

这是固定的。如果它有用:

问题在于声明变量的方式。我不得不将一个类级别的变量声明为静态的,因此应用于这个变量的任何更改都开始反映在其他任何地方。奇怪的是,当它单独执行时,我看不到问题。

EDIT on 13112019: Moving my comment to the answer section, on request:

由于很久以前,我不记得确切的可变细节。但我相信它是以下之一:this.originalFileName、this.inProgressDirLoc、this.processedDirLoc、this.dataMDHolder、this.dataAccIDValueMap、this.dataCountryNameValueMap 我必须将它们设置为静态值,作为任何人分配[或修改]的值该成员在类中的变量引用期间没有反映。

于 2013-10-08T08:39:34.847 回答
1

我在春季休息项目中遇到的类似问题。我@Autowired annotation用来在 Callable Thread 类中注入一个对象。

该对象有时会导致空指针异常。然后在创建可调用线程类对象时删除@Autowired注释并在构造函数中传递该对象解决了我的问题。

于 2021-05-23T05:21:29.187 回答