Mybatis 返回List 报The error occurred while handling results

1.首先要明白返回list 时 ,xml 中 resultType 的配置

1. 返回的为 List 类型, resultType= "java.lang.String"
2. 返回的为 List类型,   resultType= "con.xxx.Vo"
2. 返回为实体List时,如果实体的属性值都为null,也会报这个错,本人刚好遇到。

 

这个是修改后的sql, sql中没有 and a.FaId is not null , 导致 筛选的2个字段都为null, 就会返回报错

你可能感兴趣的:(异常报错,list,mybatis,mapper.xm文件的书写,java)