解决方法,SQL映射文件中把实体类属性名作为SQL语句中字段的别名
<select id="getBlog" resultTYpe="org.mybatis.example.Blog">
select blog_id blogId,blog_nam blogName from blog where id=#{id}
</select>
解决方法,SQL映射文件中把实体类属性名作为SQL语句中字段的别名
<select id="getBlog" resultTYpe="org.mybatis.example.Blog">
select blog_id blogId,blog_nam blogName from blog where id=#{id}
</select>