我在 Eclipse 中运行一个应用程序。它产生 6 个线程。其中一个线程给出了一个例外:
com.google.common.util.concurrent.UncheckedExecutionException: com.google.common.util.concurrent.UncheckedExecutionException: java.lang.NullPointerException
堆栈跟踪是:null
.
我正在使用日食。并且无法完成这些步骤(调试面板提供了一个非常顶级的函数跟踪异常发生的位置,这对于找到根本原因没有用处)。
如何调试此异常?
我是一个 Java 新手(虽然有 C++ 经验),可能错过了一些重要信息。
以下是一些相关代码:
import com.google.common.cache.Cache;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
Cache<BubbleKey, List<BlockData>> thecache;
// Above is initialized somewhere.. bit complex and code distributed across various file
//Somewhere else
List<BlockData>> __ll = thecache.getUnchecked(keydata);
以上是造成它的原因。密钥数据已正确初始化。它可能在查找/比较键功能中,但我无法到达那里,因为没有堆栈跟踪。
多一点!在某些运行中,我得到了更多的调试输出。不过还是不知道怎么分析。
下面的异常是一个不同的异常,发生在后面的阶段,在上述异常在程序中发生 3-4 次之后。对于上述异常,正如我所提到的,从来没有任何堆栈跟踪。
at com.google.common.cache.CustomConcurrentHashMap$ComputedUncheckedException.get(CustomConcurrentHashMap.java:3305) ~[guava-10.0.1.jar:na]
at com.google.common.cache.CustomConcurrentHashMap$ComputingValueReference.compute(CustomConcurrentHashMap.java:3441) ~[guava-10.0.1.jar:na]
at com.google.common.cache.CustomConcurrentHashMap$Segment.compute(CustomConcurrentHashMap.java:2322) ~[guava-10.0.1.jar:na]
at com.google.common.cache.CustomConcurrentHashMap$Segment.getOrCompute(CustomConcurrentHashMap.java:2291) ~[guava-10.0.1.jar:na]
at com.google.common.cache.CustomConcurrentHashMap.getOrCompute(CustomConcurrentHashMap.java:3802) ~[guava-10.0.1.jar:na]
at com.google.common.cache.ComputingCache.get(ComputingCache.java:46) ~[guava-10.0.1.jar:na]
at com.google.common.cache.AbstractCache.getUnchecked(AbstractCache.java:49) ~[guava-10.0.1.jar:na]
(at myfunction.... )