You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Test
public void transform() throws Exception {
QLExpressRunStrategy.setAvoidNullPointer(true);
ExpressRunner runner = new ExpressRunner(true, false);
DefaultContext<String, Object> context = new DefaultContext<>();
context.put("target", TestVO.of(1L));
Object ret = runner.execute("target.name", context, null, true, false, 60000L);
System.out.println(ret);
}
@Data
@RequiredArgsConstructor(staticName = "of")
public static class TestVO {
private final Long id;
}
错误:
java.lang.RuntimeException: java.lang.NullPointerException
at com.ql.util.express.ExpressUtil.getPropertyClass(ExpressUtil.java:573)
Caused by: java.lang.NullPointerException
at com.ql.util.express.ExpressUtil.getPropertyClass(ExpressUtil.java:570)
... 30 more
描述:OperateDataField.getObjectInner方法内部通过反射来获取对象属性,当属性不存在时,会报NPE错误。
代码:
错误:
java.lang.RuntimeException: java.lang.NullPointerException
at com.ql.util.express.ExpressUtil.getPropertyClass(ExpressUtil.java:573)
Caused by: java.lang.NullPointerException
at com.ql.util.express.ExpressUtil.getPropertyClass(ExpressUtil.java:570)
... 30 more
期望:
希望当获取不存在的属性时,如果AvoidNullPointer设置为为TRUE,则直接返回null,而不是报错。
The text was updated successfully, but these errors were encountered: