目录
能够使用映射配置文件实现 CRUD 操作能够使用注解实现 CRUD 操作![]()
文件👉Maven👉不勾选(从原型创建)👉下一步👉自主配置👉完成
设置👉搜索maven👉选择版本,覆盖用户设置文件(settings.xml),覆盖本地存储库👉应用👉确定



- -- 删除tb_brand表
- drop table if exists tb_brand;
- -- 创建tb_brand表
- create table tb_brand
- (
- -- id 主键
- id int primary key auto_increment,
- -- 品牌名称
- brand_name varchar(20),
- -- 企业名称
- company_name varchar(20),
- -- 排序字段
- ordered int,
- -- 描述信息
- description varchar(100),
- -- 状态:0:禁用 1:启用
- status int
- );
- -- 添加数据
- insert into tb_brand (brand_name, company_name, ordered, description, status)
- values ('三只松鼠', '三只松鼠股份有限公司', 5, '好吃不上火', 0),
- ('华为', '华为技术有限公司', 100, '华为致力于把数字世界带入每个人、每个家庭、每个组织,构建万物互联的智能世界', 1),
- ('小米', '小米科技有限公司', 50, 'are you ok', 1);
-
-
- SELECT * FROM tb_brand;
- package com.itheima.pojo;
-
- /**
- * 品牌
- *
- * alt + 鼠标左键:整列编辑
- *
- * 在实体类中,基本数据类型建议使用其对应的包装类型
- */
-
- public class Brand {
- // id 主键
- private Integer id;
- // 品牌名称
- private String brandName;
- // 企业名称
- private String companyName;
- // 排序字段
- private Integer ordered;
- // 描述信息
- private String description;
- // 状态:0:禁用 1:启用
- private Integer status;
-
-
- public Integer getId() {
- return id;
- }
-
- public void setId(Integer id) {
- this.id = id;
- }
-
- public String getBrandName() {
- return brandName;
- }
-
- public void setBrandName(String brandName) {
- this.brandName = brandName;
- }
-
- public String getCompanyName() {
- return companyName;
- }
-
- public void setCompanyName(String companyName) {
- this.companyName = companyName;
- }
-
- public Integer getOrdered() {
- return ordered;
- }
-
- public void setOrdered(Integer ordered) {
- this.ordered = ordered;
- }
-
- public String getDescription() {
- return description;
- }
-
- public void setDescription(String description) {
- this.description = description;
- }
-
- public Integer getStatus() {
- return status;
- }
-
- public void setStatus(Integer status) {
- this.status = status;
- }
-
- @Override
- public String toString() {
- return "Brand{" +
- "id=" + id +
- ", brandName='" + brandName + '\'' +
- ", companyName='" + companyName + '\'' +
- ", ordered=" + ordered +
- ", description='" + description + '\'' +
- ", status=" + status +
- '}';
- }
- }
MybatisX 是一款基于 IDEA 的快速开发插件,为效率而生。主要功能:XML映射配置文件 和 接口方法 间相互跳转根据接口方法生成 statement安装方式:点击 file ,选择 settings ,就能看到如下图所示界面

插件效果:

红色头绳的表示映射配置文件,蓝色头绳的表示 mapper 接口。在 mapper 接口点击红色头绳的小鸟图标会自动跳转到对应的映射配置文件,在映射配置文件中点击蓝色头绳的小鸟图标会自动跳转到对应的 mapper 接口。也可以在mapper 接口中定义方法,自动生成映射配置文件中的 statement ,如图所示:
步骤:
1.编写接口方法: Mapper 接口2.参数:无查询所有数据功能是不需要根据任何条件进行查询的,所以此方法不需要参数。
//在BrandMapper接口中创建该方法 ListselectAll(); 3. 结果: List我们会将查询出来的每一条数据封装成一个 Brand 对象,而多条数据封装多个 Brand 对象,需要将这些对象封装到 List 集合中返回。
<select id="selectAll" resultType="brand"> select * from tb_brand; select>4.执行方法、测试
- pubic interface BrandMapper{
-
- List
selectAll(); - }
- "1.0" encoding="UTF-8" ?>
- mapper
- PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
- "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
-
-
- <mapper namespace="com.itheima.mapper.BrandMapper">
-
- <select id="selectAll" resultMap="brandResultMap">
- select *
- from tb_brand;
- select>
-
- mapper>
在 MybatisTest 类中编写测试查询所有的方法
- @Test
- public void testSelectAll() throws IOException {
- //1. 获取SqlSessionFactory
- String resource = "mybatis-config.xml";
- InputStream inputStream = Resources.getResourceAsStream(resource);
- SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
-
- //2. 获取SqlSession对象
- SqlSession sqlSession = sqlSessionFactory.openSession();
-
- //3. 获取Mapper接口的代理对象
- BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
-
- //4. 执行方法
- List
brands = brandMapper.selectAll(); - System.out.println(brands);
-
- //5. 释放资源
- sqlSession.close();
-
- }
从上面结果可以看到 brandName 和 companyName 这两个属性的数据没有封装成功,查询 实体类 和 表中的字段 发现,在实体类中属性名是 brandName 和 companyName ,而表中的字段名为 brand_name 和 company_name ,如下图所示 。那么我们只需要保持这两部分的名称一致这个问题就迎刃而解。
方式一:as,我们可以在写sql语句时给这两个字段起别名,将别名定义成和属性名一致即可。
- <select id="selectAll" resultType="brand">
- select
- id, brand_name as brandName, company_name as companyName, ordered,description,status
- from tb_brand;
- select>
方式二:SQL片段
- <sql id="brand_column">
- id, brand_name as brandName, company_name as companyName, ordered, description, status
- sql>
id 属性值是唯一标识,引用时也是通过该值进行引用。在原 sql 语句中进行引用使用 include 标签引用上述的 SQL 片段,而 refid 指定上述 SQL 片段的 id 值
- <select id="selectAll" resultType="brand">
- select
- <include refid="brand_column" />
- from tb_brand;
- select>
起别名 + sql片段的方式 可以解决上述问题,但是它也存在问题。如果还有功能只需要查询部分字段,而不是查询所有字段,那么我们就需要再定义一个 SQL 片段,这就显得不是那么灵活。那么我们也可以使用 resultMap 来定义字段和属性的映射关系的方式解决上述问题。在映射配置文件中使用 resultMap 定义 字段 和 属性 的映射关系
<resultMap id="brandResultMap" type="brand"> <result column="brand_name" property="brandName"/> <result column="company_name" property="companyName"/> resultMap>SQL语句正常编写
<select id="selectAll" resultMap="brandResultMap"> select * from tb_brand; select>
实体类属性 和 数据库表列名不一致,不能自动封装数据起别名: 在 SQL 语句中,对不一样的列名起别名,别名和实体类属性名一样可以定义 片段,提升复用性resultMap : 定义完成不一致的属性名和列名的映射(as+SQL片段)而我们最终选择使用 resultMap 的方式。查询映射配置文件中查询所有的 statement 书写如下:
<resultMap id="brandResultMap" type="brand"> <result column="brand_name" property="brandName"/> <result column="company_name" property="companyName"/> resultMap> <select id="selectAll" resultMap="brandResultMap"> select * from tb_brand; select>mybatis的主要思路:
获取sqlSession对象,调用该对象中的getMapper()传入BrandMapper.Class参数即反射过去一个BrandMapper接口成为一个接口对象,该接口中有List
selectAll();方法,该方法的方法名就是BrandMapper.xml映射文件中的id名(selectAll),然后sqlSession对象执行该映射文件中的sql语句,并且返回一个List集合,元素类型为Brand。
步骤:
编写接口方法: Mapper 接口Brand SelectById(int id);参数:id
查看详情就是查询某一行数据,所以需要根据id进行查询。而id以后是由页面传递过来。
结果: Brand根据 id 查询出来的数据只要一条,而将一条数据封装成一个 Brand 对象即可编写 SQL 语句: SQL 映射文件
<select id="selectById"parameterType="int" resultType="brand"> select * from tb_brand where id = #{id}; select>执行方法、进行测试
在 BrandMapper 接口中定义根据id查询数据的方法
Brand selectById(int id);
- <select id="selectById" resultMap="brandResultMap">
- select * from tb_brand where id = #{id};
- select>
- @Test
- public void testSelectById() throws IOException {
- //接收参数
- int id = 1;
-
- //1. 获取SqlSessionFactory
- String resource = "mybatis-config.xml";
- InputStream inputStream = Resources.getResourceAsStream(resource);
- SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
-
- //2. 获取SqlSession对象
- SqlSession sqlSession = sqlSessionFactory.openSession();
-
- //3. 获取Mapper接口的代理对象
- BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
-
- //4. 执行方法
- Brand brand = brandMapper.selectById(id);
- System.out.println(brand);
-
- //5. 释放资源
- sqlSession.close();
-
- }
查询到的结果很好理解就是 id 为 1 的这行数据。而这里我们需要看控制台显示的 SQL 语句,能看到使用?进行占位。说明我们在映射配置文件中的写的 #{id} 最终会被?进行占位。接下来我们就聊聊映射配置文件中的参数占位符。mybatis 提供了两种参数占位符:#{} :执行SQL时,会将 #{} 占位符替换为?,将来自动设置参数值。从上述例子可以看出使用#{} 底层使用的是 PreparedStatement。${} :拼接SQL。底层使用的是 Statement ,会存在SQL注入问题。如下图将 映射配置文件中的 #{} 替换成 ${} 来看效果。
<select id="selectById" resultMap="brandResultMap"> select * from tb_brand where id = ${id}; select>
注意:从上面两个例子可以看出,以后开发我们使用 #{} 参数占位符。
对于有参数的 mapper 接口方法,我们在映射配置文件中应该配置 ParameterType 来指定参数类型。只不过该属性都可以省略。如下图:
<select id="selectById" parameterType="int" resultMap="brandResultMap"> s elect * from tb_brand where id = ${id}; select>
可以看出报错了,因为映射配置文件是 xml 类型的问题,而 > < 等这些字符在 xml 中有特殊含义,所以此时我们需要将这些符号进行转义,可以使用以下两种方式进行转义。转义字符与

步骤:
编写接口方法参数:所有查询条件结果: List在映射配置文件中编写 SQL 语句编写测试方法并执行
在 BrandMapper 接口中定义多条件查询的方法。而该功能有三个参数,我们就需要考虑定义接口时,参数应该如何定义。 Mybatis 针对多参数有多种实现:方式一:使用 @Param(" 参数名称 ") 标记每一个参数,在映射配置文件中就需要使用 #{ 参数名称 } 进行占位。
ListselectByCondition(@Param("status") int status, @Param("companyName") String companyName,@Param("brandName") String brandName);方式二:将多个参数封装成一个实体对象 ,将该实体对象作为接口的方法参数。该方式要求在映射配置文件的SQL中使用 #{内容} 时,里面的内容必须和实体类属性名保持一致。
ListselectByCondition(Brand brand); 方式三:将多个参数封装到map集合中,将map集合作为接口的方法参数。该方式要求在映射配置文件的SQL中使用 #{内容} 时,里面的内容必须和map集合中键的名称一致。
ListselectByCondition(Map map);
在 BrandMapper.xml 映射配置文件中编写 statement ,使用 resultMap 而不是使用 resultType。因为实体类属性名与数据库属性名不一致,故使用resultMap标签。
<select id="selectByCondition" resultMap="brandResultMap"> select * from tb_brand where status = #{status} and company_name like #{companyName} and brand_name like #{brandName} select>
在 test/java 下的 com.itheima.mapper 包下的 MybatisTest 类中 定义测试方法
@Test public void testSelectByCondition() throws IOException { //接收参数 int status = 1; String companyName = "华为"; String brandName = "华为"; // 处理参数 companyName = "%" + companyName + "%"; brandName = "%" + brandName + "%"; //封装对象 /* Brand brand = new Brand(); brand.setStatus(status); brand.setCompanyName(companyName); brand.setBrandName(brandName);*/ Map map = new HashMap(); // map.put("status" , status); map.put("companyName", companyName); // map.put("brandName" , brandName); //1. 获取SqlSessionFactory String resource = "mybatis-config.xml"; InputStream inputStream = Resources.getResourceAsStream(resource); SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream); //2. 获取SqlSession对象 SqlSession sqlSession = sqlSessionFactory.openSession(); //3. 获取Mapper接口的代理对象 BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class); //4. 执行方法 //Listbrands = brandMapper.selectByCondition(status, companyName, brandName); // Listbrands = brandMapper.selectByCondition(brand); Listbrands = brandMapper.selectByCondition(map); System.out.println(brands); //5. 释放资源 sqlSession.close(); }
标签一:if
if 标签:条件判断test 属性:逻辑表达式
- <select id="selectByCondition" resultMap="brandResultMap">
- select *
- from tb_brand
- where
-
- <if test="status != null">
- and status = #{status}
- if>
- <if test="companyName != null and companyName != '' ">
- and company_name like #{companyName}
- if>
- <if test="brandName != null and brandName != '' ">
- and brand_name like #{brandName}
- if>
-
- select>
标签二:where 标签
作用:替换where关键字会动态的去掉第一个条件前的 and如果所有的参数没有值则不加where关键字
- <select id="selectByCondition" resultMap="brandResultMap">
- select *
- from tb_brand
- /* where 1 = 1*/
- <where>
-
- <if test="status != null">
- and status = #{status}
- if>
- <if test="companyName != null and companyName != '' ">
- and company_name like #{companyName}
- if>
- <if test="brandName != null and brandName != '' ">
- and brand_name like #{brandName}
- if>
- where>
-
- select>
注意:需要给每个条件前都加上 and 关键字。

方式三:choose(when,otherwise)作用:
choose类似于switchwhen类似于caseotherwise类似于default
List selectByConditionSingle(Brand brand);
- <select id="selectByConditionSingle" resultMap="brandResultMap">
- select *
- from tb_brand
- <where>
- <choose>
- <when test="status != null">
- status = #{status}
- when>
- <when test="companyName != null and companyName != '' ">
- company_name like #{companyName}
- when>
- <when test="brandName != null and brandName != ''">
- brand_name like #{brandName}
- when>
-
- choose>
- where>
- select>
- @Test
- public void testSelectByConditionSingle() throws IOException {
- //接收参数
- int status = 1;
- String companyName = "华为";
- String brandName = "华为";
-
- // 处理参数
- companyName = "%" + companyName + "%";
- brandName = "%" + brandName + "%";
-
- //封装对象
- Brand brand = new Brand();
- //brand.setStatus(status);
- brand.setCompanyName(companyName);
- //brand.setBrandName(brandName);
-
- //1. 获取SqlSessionFactory
- String resource = "mybatis-config.xml";
- InputStream inputStream = Resources.getResourceAsStream(resource);
- SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
-
- //2. 获取SqlSession对象
- SqlSession sqlSession = sqlSessionFactory.openSession();
-
- //3. 获取Mapper接口的代理对象
- BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
-
- //4. 执行方法
-
- //List
brands = brandMapper.selectByCondition(status, companyName, brandName); - // List
brands = brandMapper.selectByCondition(brand); -
- List
brands = brandMapper.selectByConditionSingle(brand); - System.out.println(brands);
-
- //5. 释放资源
- sqlSession.close();
-
- }
步骤:
编写接口方法
void add(Brand brand);参数:除了id之外的所有的数据。id对应的是表中主键值,而主键我们是 自动增长 生成的。
编写 SQL 语句
<insert id="add"> insert into tb_brand (brand_name, company_name, ordered, description, status) values (#{brandName}, #{companyName}, #{ordered}, #{description}, #{status}); insert>编写测试方法并执行
void add(Brand brand);
- <insert id="add">
- insert into tb_brand (brand_name, company_name, ordered, description, status)
- values (#{brandName}, #{companyName}, #{ordered}, #{description}, #{status});
-
- insert>
- @Test
- public void testAdd() throws IOException {
- //接收参数
- int status = 1;
- String companyName = "波导手机";
- String brandName = "波导";
- String description = "手机中的战斗机";
- int ordered = 100;
-
-
- //封装对象
- Brand brand = new Brand();
- brand.setStatus(status);
- brand.setCompanyName(companyName);
- brand.setBrandName(brandName);
- brand.setDescription(description);
- brand.setOrdered(ordered);
-
- //1. 获取SqlSessionFactory
- String resource = "mybatis-config.xml";
- InputStream inputStream = Resources.getResourceAsStream(resource);
- SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
-
- //2. 获取SqlSession对象
- SqlSession sqlSession = sqlSessionFactory.openSession();
- //SqlSession sqlSession = sqlSessionFactory.openSession(true);
-
- //3. 获取Mapper接口的代理对象
- BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
-
- //4. 执行方法
-
- brandMapper.add(brand);
-
- //提交事务
- sqlSession.commit();
-
- //5. 释放资源
- sqlSession.close();
-
- }
注意:MyBatis框架是对JDBC的封装,MyBatis中的事务控制方式其本质也是JDBCsetAutoCommit()方法来设置事务提交的方式的。故需要手动提交事务,但也可以在
SqlSession sqlSession = sqlSessionFactory.openSession(true);设置自动提交事务。
- <insert id="add" useGeneratedKeys="true" keyProperty="id">
- insert into tb_brand (brand_name, company_name, ordered, description, status)
- values (#{brandName}, #{companyName}, #{ordered}, #{description}, #{status});
-
- insert>
在 insert 标签上添加如下属性:useGeneratedKeys:是够获取自动增长的主键值。 true 表示获取keyProperty :指定将获取到的主键值封装到哪儿个属性里通过以上两个属性的设定,可以将自增长的id绑定到对象brand上面,从而方便以后信息的获取
void update(Brand brand);
- <update id="update">
- update tb_brand
- <set>
- <if test="brandName != null and brandName != ''">
- brand_name = #{brandName},
- if>
- <if test="companyName != null and companyName != ''">
- company_name = #{companyName},
- if>
- <if test="ordered != null">
- ordered = #{ordered},
- if>
- <if test="description != null and description != ''">
- description = #{description},
- if>
- <if test="status != null">
- status = #{status}
- if>
- set>
- where id = #{id};
- update>
- @Test
- public void testUpdate() throws IOException {
- //接收参数
- int status = 0;
- String companyName = "波导手机";
- String brandName = "波导";
- String description = "波导手机,手机中的战斗机";
- int ordered = 200;
- int id = 6;
-
-
- //封装对象
- Brand brand = new Brand();
- brand.setStatus(status);
- // brand.setCompanyName(companyName);
- // brand.setBrandName(brandName);
- // brand.setDescription(description);
- // brand.setOrdered(ordered);
- brand.setId(id);
-
- //1. 获取SqlSessionFactory
- String resource = "mybatis-config.xml";
- InputStream inputStream = Resources.getResourceAsStream(resource);
- SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
-
- //2. 获取SqlSession对象
- SqlSession sqlSession = sqlSessionFactory.openSession();
- //SqlSession sqlSession = sqlSessionFactory.openSession(true);
-
- //3. 获取Mapper接口的代理对象
- BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
-
- //4. 执行方法
-
-
- int count = brandMapper.update(brand);
- System.out.println(count);
- //提交事务
- sqlSession.commit();
-
- //5. 释放资源
- sqlSession.close();
-
- }
void deleteById(int id);
- <delete id="deleteById">
- delete from tb_brand where id=#{id};
- delete>
- @Test
- public void testDeleteById() throws IOException {
- //接收参数
-
- int id = 6;
-
-
- //1. 获取SqlSessionFactory
- String resource = "mybatis-config.xml";
- InputStream inputStream = Resources.getResourceAsStream(resource);
- SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
-
- //2. 获取SqlSession对象
- SqlSession sqlSession = sqlSessionFactory.openSession();
- //SqlSession sqlSession = sqlSessionFactory.openSession(true);
-
- //3. 获取Mapper接口的代理对象
- BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
-
- //4. 执行方法
-
- brandMapper.deleteById(id);
-
- //提交事务
- sqlSession.commit();
-
- //5. 释放资源
- sqlSession.close();
-
- }
void deleteByIds(int [] ids);//参数是一个数组,数组中存储的是多条数据的id
foreach 标签用来迭代任何可迭代的对象(如数组,集合)。1.collection 属性:mybatis 会将数组参数,封装为一个 Map 集合。默认: array = 数组使用 @Param 注解改变 map 集合的默认 key 的名称(arg0...)2.item 属性:本次迭代获取到的元素。3.separator 属性:集合项迭代之间的分隔符。 foreach 标签不会错误地添加多余的分隔符。也就是 最后一次迭代不会加 分隔符。4.open 属性:该属性值是在拼接 SQL 语句之前拼接的语句,只会拼接一次5.close 属性:该属性值是在拼接 SQL 语句拼接后拼接的语句,只会拼接一次
-
-
- <delete id="deleteByIds">
- delete from tb_brand where id
- in
- <foreach collection="array" item="id" separator="," open="(" close=")">
- #{id}
- foreach>
- ;
- delete>
- @Test
- public void testDeleteByIds() throws IOException {
- //接收参数
-
- int[] ids = {5,7,8};
-
-
- //1. 获取SqlSessionFactory
- String resource = "mybatis-config.xml";
- InputStream inputStream = Resources.getResourceAsStream(resource);
- SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
-
- //2. 获取SqlSession对象
- SqlSession sqlSession = sqlSessionFactory.openSession();
- //SqlSession sqlSession = sqlSessionFactory.openSession(true);
-
- //3. 获取Mapper接口的代理对象
- BrandMapper brandMapper = sqlSession.getMapper(BrandMapper.class);
-
- //4. 执行方法
-
- brandMapper.deleteByIds(ids);
-
- //提交事务
- sqlSession.commit();
-
- //5. 释放资源
- sqlSession.close();
-
- }
Mybatis 接口方法中可以接收各种各样的参数,如下:多个参数单个参数:单个参数又可以是如下类型:POJO 类型Map 集合类型Collection 集合类型List 集合类型Array 类型其他类型
User select(@Param("username") String username,@Param("password") String password);
- <select id="select" resultType="user">
- select *
- from tb_user
- where
- username=#{username}
- and password=#{password}
- select>
我们在接口方法中定义多个参数, Mybatis 会将这些参数封装成 Map 集合对象,值就是参数值,而键在没有使用 @Param注解时有以下命名规则:以 arg 开头 :第一个参数就叫 arg0 ,第二个参数就叫 arg1 ,以此类推。如:map.put("arg0" ,参数值 1);map.put("arg1" ,参数值 2);以 param 开头 : 第一个参数就叫 param1 ,第二个参数就叫 param2 ,依次类推。如:map.put("param1" ,参数值 1);map.put("param2" ,参数值 2);在映射配合文件的SQL语句中使用用 arg 开头的和 param 书写,代码的可读性会变的特别差,此时可以使用 @Param注解。在接口方法参数上使用 @Param 注解,Mybatis 会将 arg 开头的键名替换为对应注解的属性值。
POJO 类型直接使用。要求 属性名 和 参数占位符名称 一致Map 集合类型直接使用。要求 map集合的键名 和 参数占位符名称 一致Collection 集合类型Mybatis 会将集合封装到 map 集合中,如下:map.put("arg0" , collection 集合 );map.put("collection" , collection 集合 ;可以使用 @Param 注解替换 map 集合中默认的 arg 键名。List 集合类型Mybatis 会将集合封装到 map 集合中,如下:map.put("arg0" , list 集合 );map.put("collection" , list 集合 );map.put("list" , list 集合 );可以使用 @Param 注解替换 map 集合中默认的 arg 键名。Array 类型Mybatis 会将集合封装到 map 集合中,如下:map.put("arg0" ,数组 );map.put("array" ,数组 );可以使用 @Param 注解替换 map 集合中默认的 arg 键名。其他类型比如int类型, 参数占位符名称 叫什么都可以。尽量做到见名知意
使用注解开发会比配置文件开发更加方便。如下就是使用注解进行开发
@Select(value = "select * from tb_user where id = #{id}") public User select(int id);Mybatis 针对 CURD 操作都提供了对应的注解,已经做到见名知意。如下:查询 : @Select添加 : @Insert修改 : @Update删除 : @Delete
总结:注解完成简单功能,配置文件完成复杂功能。