Mybatis 输入映射为包装类型,执行报Cause: org.apache.ibatis.reflection.ReflectionException

(1)视图类型,包装一个类

Mybatis 输入映射为包装类型,执行报Cause: org.apache.ibatis.reflection.ReflectionException

(2)map.xml SQL语句

Mybatis 输入映射为包装类型,执行报Cause: org.apache.ibatis.reflection.ReflectionException

(3)报如上错,原因为:PersonVo类中,没有PersonExt属性,查看文件是有PersonExt类型的personExt属性的,但SQL语句中,personExt属性,首字母大写了PersonEx,应小写。

(4)改为小写后,执行成功

Mybatis 输入映射为包装类型,执行报Cause: org.apache.ibatis.reflection.ReflectionException


(4)注意:输入映射非简单类型,参数名称为类中的属性名称,而不是属性的java类型