Cause: org.apache.ibatis.ognl.NoSuchPropertyException

7 篇文章 0 订阅
[2022-05-24 09:27:33:173] [http-nio-8080-exec-5] ERROR      - Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.builder.BuilderException: Error evaluating expression 'et.excBrhCodes!=null'. Cause: org.apache.ibatis.ognl.NoSuchPropertyException: com.test.Config.excBrhCodes] with root cause
org.apache.ibatis.ognl.NoSuchPropertyException: com.test.Config.excBrhCodes
	at org.apache.ibatis.ognl.ObjectPropertyAccessor.getProperty(ObjectPropertyAccessor.java:151)
	at org.apache.ibatis.ognl.OgnlRuntime.getProperty(OgnlRuntime.java:2671)
	at org.apache.ibatis.ognl.ASTProperty.getValueBody(ASTProperty.java:114)
	at org.apache.ibatis.ognl.SimpleNode.evaluateGetValueBody(SimpleNode.java:212)
	at org.apache.ibatis.ognl.SimpleNode.getValue(SimpleNode.java:258)

debug定位:
私有方法不能更新
问题源码:

public static final Object getMethodValue(OgnlContext context, Object target, String propertyName, boolean checkAccessAndExistence) throws OgnlException, IllegalAccessException, NoSuchMethodException, IntrospectionException {
        Object result = null;
        Method m = getGetMethod(context, target == null ? null : target.getClass(), propertyName);
        if (m == null) {
            m = getReadMethod(target == null ? null : target.getClass(), propertyName, (Class[])null);
        }

        if (checkAccessAndExistence && (m == null || !context.getMemberAccess().isAccessible(context, target, m, propertyName))) {
            result = NotFound;
        }

        if (result == null) {
            if (m == null) {
                throw new NoSuchMethodException(propertyName);
            }

            try {
                result = invokeMethod(target, m, NoArguments);
            } catch (InvocationTargetException var7) {
                throw new OgnlException(propertyName, var7.getTargetException());
            }
        }

        return result;
    }

public Object getProperty(Map context, Object target, Object oname) throws OgnlException {
        Object result = null;
        String name = oname.toString();
        result = this.getPossibleProperty(context, target, name);
        if (result == OgnlRuntime.NotFound) {
            throw new NoSuchPropertyException(target, name);
        } else {
            return result;
        }
    }

这个异常引起原因是方法访问权限为私有,或方法名字不规范导致例如isXxx字段,他的访问方法是getXXX还是getIsXxx这种歧义。
总结:经验还是太少了,只关注字段存不存在,没有注意方法的访问权限。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值