预期的空指针导致意外的InvocationTargetException

时间:2013-08-26 15:29:59

标签: java concurrency

XML文件被用作临时缓存,通过SOAP请求(几个配置值)存储临时值。多个线程将使用此文件,因此如果文件已经更新,我不想写入该文件。在第一次通过代码时,我希望缓存返回null,之后文件将被更新。但是,当退出finally块时,我得到InvocationTargetException,程序失败。我不明白为什么null CacheValues对象抛出异常。

public class TempCache{
     private final ReadWriteLock myLock = new ReentrantReadWriteLock();
     private final MyCache cache = XmlCache.getInstance(); //creates singleton         
                                                           //instance, but doesn't 
                                                           //set values upon 
                                                           //initialization...

     public CacheValues getCache(){
         Lock lock = myLock.readLock();
         CacheValues cv = null;

         try{
             lock.lock();
             cv = cache.getCacheValues();  //returns null on the first pass...

         }finally{
             lock.unlock();
         }                    // exception thrown here

         if(cv == null){
             refreshCache(); //submits SOAP request to set the xml cache values
         }

   ...
}

1 个答案:

答案 0 :(得分:1)

使用反射时会发生InvocationTargetException,并使用java.lang.reflect.Method进行调用。这可能发生在代理类或其他拦截,工具类中。

在调用时,发生了一个InvocationTargetException中发生异常的异常,您可以使用getCause()获取原始异常或查看堆栈跟踪。