mybatis返回部分字段为空的问题

问题:

在数据库查询的时候可以正常返回值,在程序中只能返回一部分字段,其他字段为null。

错误原因:

将resultType改为resultMap

 

https://www.cnblogs.com/iliuyuet/p/4503799.html

 

 

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.reflection.Reflecti

提示没有该字段,这个时候解决方案是:

修改mapper中传递的参数,将其换成另外一个名字

mybatis返回部分字段为空的问题_第1张图片

 

你可能感兴趣的:(mybatis返回部分字段为空的问题)