编写代码
- 添加注解
@SpringBootTest
- 在对应的单元测试方法中编写代码
Assertions—断言
如果断言失败, 后续代码将不会执行
方法 | 说明 |
Assertions.assertEquals() | 判断两个对象或两个原始类型是否相等 |
Assertions.assertNotEquals() | 判断两个对象或两个原始类型是否不等 |
Assertions.assertSame() | 判断两个对象的引用是否指向同一个对象 |
Assertions.assertNotSame() | 判断两个对象的引用是否指向不同的对象 |
Assertions.assertTrue() | 判断给定的布尔值是否为 true |
Assertions.assertFalse() | 判断给定的布尔值是否为 false |
Assertions.assertNull() | 判断给定的对象引用是否为 null |
Assertions.assertNotNull() | 判断给定的对象引用是否不为 null |
🔎MyBatis—新增
使用show create table userinfo
查看哪些字段为非空(NOT NULL)
- username → NOT NULL
- password → NOT NULL
- createtime → NOT NULL(但含有默认值)
- updatetime → NOT NULL(但含有默认值)
新增用户信息(不返回用户 Id)
新增用户信息 → 此处使用的数据表为 userinfo(用户) 表
新增操作默认返回值为 Int 类型
新增操作的标签为<insert></insert>
使用<insert></insert>
标签时需搭配 id 属性
在 Interface 中定义方法
/** * 新增用户信息 * @author bibubibu * @date 2023/7/2 */ int add(Userinfo userinfo);
在 xml 中实现方法
<insert id="add"> insert into userinfo(username, password) values(#{username}, #{password}) </insert>
注意🍂
对于values(#{username}, #{password})
username 对应的是实体类中的属性(不是字段名)
password 对应的是实体类中的属性(不是字段名)
单元测试验证效果
非第一次添加单元测试时, 可能会出现 Error
点击 OK 即可
测试查看效果
针对当前代码, 无法得到添加对象成功后对象的 id🍂
userinfo 表中的 id 是自增的
对于当前运行结果, 表示已添加成功, 但无法得到添加对象的 id
新增用户信息(返回用户 Id)
返回用户 Id, 需在<insert></insert>
标签添加useGeneratedKeys
与keyProperty
- useGeneratedKeys, 是否使用生成的主键
- keyProperty, 将生成的主键赋值给哪个属性
在 Interface 中定义方法
/** * 新增用户信息(返回用户 Id) * @author bibubibu * @date 2023/7/2 */ int addAndRetId(UserInfo userInfo);
在 xml 中实现方法
<insert id="addAndRetId" useGeneratedKeys="true" keyProperty="id"> insert into userinfo(username, password) values(#{username}, #{password}) </insert>
注意🍂
keyProperty="id"
对应的是类中的属性, 而非数据库中的字段
- Property, 属性
- Column, 字段
单元测试验证效果
🔎MyBatis—修改
修改用户信息
修改用户信息 → 此处使用的数据表为 userinfo(用户) 表
修改操作默认返回值为 Int 类型
修改操作的标签为<update></update>
使用<update></update>
标签时需搭配 id 属性
在 Interface 中定义方法
/** * 修改用户信息 * @author bibubibu * @date 2023/7/3 */ int updateUserInfo(UserInfo userInfo);
在 xml 中实现方法
<update id="updateUserInfo"> update userinfo set username = #{username}, password = #{password} where id = #{id} </update>
单元测试验证效果
🔎MyBatis—配置打印执行的 SQL
# 设置 Mybatis 的 xml 保存路径 mybatis: mapper-locations: classpath:mapper/*Mapper.xml configuration: # 配置打印 MyBatis 执行的 SQL log-impl: org.apache.ibatis.logging.stdout.StdOutImpl # 设置日志级别 logging: level: com: example: demo: debug
效果测试🍭
🔎MyBatis—删除
删除用户信息
删除用户信息 → 此处使用的数据表为 userinfo(用户) 表
删除操作默认返回值为 Int 类型
删除操作的标签为<delete></delete>
使用<delete></delete>
标签时需搭配 id 属性
在 Interface 中定义方法
/** * 删除用户信息 * @author bibubibu * @date 2023/7/3 */ int delUserInfo(@Param("id") Integer id);