javabean属性 数据库字段 有以下三种解决方式: 简而言之,言而简之,在sql语句中对数据库表字段起别名为javabean属性名 在xxxMapper.xml文件中进行映射即可 其中column为数据库表字段,property为javabean属性名 在接口前添加注解如下即可: 初学Mybatis,如果哪里有错误的地方,还望各位指正!private int id; private String name; private String password;
其中,密码字段不一致。
1. 通过对数据库字段起一个别名
2. 使用resultMap结果集进行映射
3. 使用注解对字段进行映射通过对数据库字段起一个别名
示例代码如下:<select id="getUserById" resultType="cn.yangyt.pojo.User"> select id,name,pwd as password from mybatis.user where id=#{id}; </select>
使用resultMap结果集进行映射
<resultMap id="UserMap" type="User"> <result column="pwd" property="password"></result> </resultMap>
<select id="getUserList" resultType="cn.yangyt.pojo.User"> select * from mybatis.user; </select>
使用注解对字段进行映射
@Select("select * from user") @Results({ @Result(property = "password",column = "pwd") } ) List<User> getUserList();
本网页所有视频内容由 imoviebox边看边下-网页视频下载, iurlBox网页地址收藏管理器 下载并得到。
ImovieBox网页视频下载器 下载地址: ImovieBox网页视频下载器-最新版本下载
本文章由: imapbox邮箱云存储,邮箱网盘,ImageBox 图片批量下载器,网页图片批量下载专家,网页图片批量下载器,获取到文章图片,imoviebox网页视频批量下载器,下载视频内容,为您提供.
阅读和此文章类似的: 全球云计算