mybatis查询,如果返回类型为resultType时,查询不到某些属性值。
原因是:在使用mybatis通过id查询时mybatis自动映射数据库字段和实体类,当数据库字段与实体类的属性不一致时,mybatis就不能映射了。
解决方案。
方案一:数据库字段和实体类属性一致。
方案二:<!-- 当实体类属性跟数据库字段不一致时映射结果集 -->
返回类型改为resultMap值为:result_person
配置一个返回的Map(下面只配置一个字段和实体属性的映射,其他类似):
<resultMap type="Person" id="result_person">
<result property="name" column="t_name"/>
</resultMap>