Either targetObject or targetClass for the field must be specified

在运行时遇到`java.lang.IllegalArgumentException: Either targetObject or targetClass for the field must be specified`错误。问题源于在使用ReflectionTestUtils时,未设置targetObject或targetClass。解决方案是检查代码中类的注入、包名,确保测试类继承正确或包含必要的注解。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

报错: java.lang.IllegalArgumentException: Either targetObject or targetClass for the field must be specified

java.lang.IllegalArgumentException: Either targetObject or targetClass for the field must be specified

	at org.springframework.util.Assert.isTrue(Assert.java:116)
	at org.springframework.test.util.ReflectionTestUtils.setField(ReflectionTestUtils.java:173)
	at org.springframework.test.util.ReflectionTestUtils.setField(ReflectionTestUtils.java:105)
	at org.springframework.test.util.ReflectionTestUtils.setField(ReflectionTestUtils.java:89)
	at com.gnete.sdywbc.trade.tradebean.MZSettRefundQueryTest.init(MZSettRefundQueryTest.java:148)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:497)
	at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
	at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
	at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
	at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:24)
	at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
	at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
	at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
	at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
	at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
	at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
	at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
	at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
	at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
	at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
	at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
	at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
	at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

报错部分代码及源码如下:
测试类:

public class MZSettRefundQueryTest {
	@Autowired
    private CallPaymService callPaymService;
    ......
	ReflectionTestUtils.setField(callPaymService, "insurancePayRpcService", paymscInsurancePayRpcService);
	......
}

ReflectionTestUtils类:

public static void setField(@Nullable Object targetObject, @Nullable Class<?> targetClass, @Nullable String name, @Nullable Object value, @Nullable Class<?> type) {
    Assert.isTrue(targetObject != null || targetClass != null, "Either targetObject or targetClass for the field must be specified");
    if (targetObject != null && springAopPresent) {
        targetObject = AopTestUtils.getUltimateTargetObject(targetObject);
    }

    if (targetClass == null) {
        targetClass = targetObject.getClass();
    }

    Field field = ReflectionUtils.findField(targetClass, name, type);
    if (field == null) {
        throw new IllegalArgumentException(String.format("Could not find field '%s' of type [%s] on %s or target class [%s]", name, type, safeToString(targetObject), targetClass));
    } else {
        if (logger.isDebugEnabled()) {
            logger.debug(String.format("Setting field '%s' of type [%s] on %s or target class [%s] to value [%s]", name, type, safeToString(targetObject), targetClass, value));
        }

        ReflectionUtils.makeAccessible(field);
        ReflectionUtils.setField(field, targetObject, value);
    }
}

分析:
可以看出报错是因为“targetObject ”或“targetClass ”为空,但ReflectionTestUtils.setField里的含有targetObject 参数(callPaymService),那么可以想到是没有把CallPaymService类注入进来。

解决办法:
检查代码是否正确注入CallPaymService类,包名,最后别忘了检查测试类是否继承BaseTest,或者测试类是否带有注解:

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = TradeProviderMain.class)
@Transactional

附:

@RunWith(SpringJUnit4ClassRunner.class)
@SpringBootTest(classes = TradeProviderMain.class)
@Transactional
public abstract class BaseTest   {
	
}

改正后为:

public class MZSettRefundQueryTest extends BaseTest {
	@Autowired
    private CallPaymService callPaymService;
    ......
	ReflectionTestUtils.setField(callPaymService, "insurancePayRpcService", paymscInsurancePayRpcService);
	......
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值