mybatis中mapper的写法

Mybatis的mapper写法

基础结构

1
2
3
4
5
6
7
8
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.nowcoder.community.dao.UserMapper">


</mapper>

其中,namespace要写成对应的mapper类路径

别名

1
2
3
<sql id="insertFields">
username, password, salt, email, type, status, activation_code, header_url, create_time
</sql>

将需要重复使用的字段整理为一组,使用别名标识,需要的时候,就可以使用<include refid="selectFields">来代替username, password, salt, email, type, status, activation_code, header_url, create_time

增加、删除、修改、查询

1
2
3
4
5
<select id="selectById" resultType="User">
select <include refid="selectFields"></include>
from user
where id = #{id}
</select>

对应的Mapper类中方法为

1
User selectById(int id);

#{id}可以直接引用到函数参数中的id

因为application.properities中配置了

1
mybatis.type-aliases-package=com.nowcoder.community.entity

所以可以直接写User,而不用写完整路径。

其他的语句对应<delete></delete>,<update></update>,<insert></insert>

主键自增

1
2
3
<insert id="insertUser" parameterType="User" keyProperty="id">
insert into user (<include refid="insertFields"></include>) values(#{username}, #{password}, #{salt}, #{email}, #{type}, #{status}, #{activationCode}, #{headerUrl}, #{createTime})
</insert>

keyProperty="id"用于绑定对应Java类中的id

分页查询

1
2
3
4
5
6
7
8
9
10
<select id="selectDiscussPosts" resultType="DiscussPost">
select <include refid="selectFields"></include>
from discuss_post
where status != 2
<if test="userId!=0">
and user_id = #{userId}
</if>
order by type desc, create_time desc
limit #{offset}, #{limit}
</select>

1️⃣查询第1条到第10条的数据select * from table limit 0,10; —>对应需求就是查询第一页的数据:select * from table limit (1-1)*10,10;

2️⃣查询第11条到第20条的数据select * from table limit 10,10; —>对应需求就是查询第二页的数据:select * from table limit (2-1)*10,10;

3️⃣查询第21条到第30条的数据select * from table limit 20,10; —>对应需求就是查询第三页的数据:select * from table limit (3-1)*10,10;

由此,得出符合需求的分页 sql 格式是:select * from table limit (start-1)*pageSize,pageSize;其中 start 是页码,pageSize 是每页显示的条数。

ResultMap

在 MyBatis 中,resultMap 是一个用于定义结果映射的元素,允许你将查询结果集中的列与 Java 对象的属性进行映射。resultMap 提供了比 resultType 更灵活和精确的控制,可以处理复杂的映射关系,比如嵌套对象和多表关联的结果。

参数别名

1
int selectDiscussPostRows(@Param("userId") int userId);

然后就可以使用#{userId}来引用参数userId


mybatis中mapper的写法
http://showfaker.top/2024/06/29/mybatis-mapper/
作者
ShowFaker
发布于
2024年6月29日
许可协议