org.mockito.exceptions.misusing.InjectMocksException: Cannot instantiate @InjectMocks field named 'tpmPortraitIndexOutputListener' of type 'class com.cainiao.tps.opsolution.biz.listener.TpmPortraitIndexOutputListener'. You haven't provided the instance at field declaration so I tried to construct the instance. However the constructor or the initialization block threw an exception : com.taobao.metaq.client.MetaPushConsumer was loaded by sun.misc.Launcher$AppClassLoader@18b4aac2, it should be loaded by Pandora Container. Can not load this fake sdk class. please refer to http://gitlab.alibaba-inc.com/middleware-container/pandora-boot/wikis/faq for the solution.
时间: 2024-04-07 21:32:01 浏览: 277
这个异常是由Mockito框架抛出的,它表明在使用`@InjectMocks`注解时,Mockito无法实例化一个被注入的对象,并且该对象的构造函数或初始化块抛出了异常。
根据异常信息,可以看出该问题是由于`com.taobao.metaq.client.MetaPushConsumer`类被错误地加载的原因。它应该由Pandora容器加载,但是它被由`sun.misc.Launcher$AppClassLoader`加载,因此在Mockito尝试构造该对象时抛出了异常。
解决这个问题的方法是确保`com.taobao.metaq.client.MetaPushConsumer`类被正确地加载。根据异常信息中提供的链接,可以查看Pandora容器的常见问题解决方案,尝试按照文档中的说明解决该问题。同时,还需要检查代码中是否存在其他类被错误地加载的情况,以确保所有类都被正确地加载。
阅读全文