Mybatis实体类属性与数据库不一致解决方案
程序员文章站
2022-07-02 11:22:18
当实体类属性和数据库不一致时,使用mybatis查询数据库返回实体类自动封装就会出现问题。针对这种情况,有两种解决方案。1、使用别名查询
当实体类属性和数据库不一致时,使用mybatis查询数据库返回实体类自动封装就会出现问题。针对这种情况,有两种解决方案。
1、使用别名查询
<!-- 配置查询所有操作 --> <select id="findall" resulttype="com.itheima.domain.user"> select id as userid,username as username,birthday as userbirthday, sex as usersex,address as useraddress from user </select>
优点:查询效率高
缺点:如果我们的查询很多,都使用别名的话写起来很麻烦
2、定义resultmap
resultmap 标签可以建立查询的列名和实体类的属性名称不一致时建立对应关系。从而实现封装。在 select 标签中使用 resultmap 属性指定引用即可。同时 resultmap 可以实现将查询结果映射为复杂类型的 pojo,比如在查询结果映射对象中包括 pojo 和 list 实现一对一查询和一对多查询。
<!-- 建立user实体和数据库表的对应关系 type属性:指定实体类的全限定类名 id属性:给定一个唯一标识,是给查询select 标签引用的。--> <resultmap type="com.itheima.domain.user" id="usermap"> <id column="id" property="userid"/> <result column="username" property="username"/> <result column="sex" property="usersex"/> <result column="address" property="useraddress"/> <result column="birthday" property="userbirthday"/> </resultmap> <!--id 标签:用于指定主键字段 result 标签:用于指定非主键字段 column 属性:用于指定数据库列名 property 属性:用于指定实体类属性名称--> <!-- 配置查询所有操作--> <select id="findall" resultmap="usermap"> select * from user </select>
优点:代码书写简洁,提高开发效率
缺点:查询效率低
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。