MyBatis 基础操作

35 篇文章 0 订阅
7 篇文章 0 订阅

新建springboot项目,添加LombokMybatisMySQL的依赖项。

在这里插入图片描述

application.properties中引入数据库连接信息。

#驱动类名称
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#数据库连接的url
spring.datasource.url=jdbc:mysql://localhost:3306/test
#连接数据库的用户名
spring.datasource.username=root
#连接数据库的密码
spring.datasource.password=mysql

创建对应的实体类(实体类属性采用驼峰命名)

package com.mybatis_demo2.pojo;

import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.time.LocalDate;
import java.time.LocalDateTime;

@Data
@NoArgsConstructor
@AllArgsConstructor
public class Emp {
    private Integer id;
    private String username;
    private String password;
    private String name;
    private Short gender;
    private String image;
    private Short job;
    private LocalDate entrydate;     //LocalDate类型对应数据表中的date类型
    private Integer deptId;
    private LocalDateTime createTime;//LocalDateTime类型对应数据表中的datetime类型
    private LocalDateTime updateTime;
}

准备mapper接口

package com.mybatis_demo2.mapper;

import org.apache.ibatis.annotations.Mapper;

/*@Mapper注解:表示当前接口为mybatis中的Mapper接口
  程序运行时会自动创建接口的实现类对象(代理对象),并交给Spring的IOC容器管理
*/
@Mapper
public interface EmpMapper {

}

完成之后的项目目录为:

在这里插入图片描述

删除

接口方法:

@Delete("delete from emp where id = #{id}")
public void delete(Integer id);

#{id}表示要删除变量名的值。

如果mapper接口方法形参只有一个普通类型的参数,#{...}里面的属性名可以随便写。

void表示没有返回值,int表示一次操作删除了多少个记录。

在这里插入图片描述

日志输入

在Mybatis当中我们可以借助日志,查看到sql语句的执行、执行传递的参数以及执行结果。具体操作如下:

  1. 打开application.properties文件

  2. 开启mybatis的日志,并指定输出到控制台

#指定mybatis输出日志的位置, 输出控制台
mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl

开启日志之后,我们再次运行单元测试,可以看到在控制台中,输出了以下的SQL语句信息:

在这里插入图片描述

?是预编译SQL的参数占位符。采用预编译SQL的两个优势:

  • 性能更高:预编译SQL,编译一次之后会将编译后的SQL语句缓存起来,后面再次执行这条语句时,不会再次编译。(只是输入的参数不同)
  • 更安全(防止SQL注入):将敏感字进行转义,保障SQL的安全性。

参数占位符

在Mybatis中提供的参数占位符有两种:${…} 、#{…}

  • #{…}

    • 执行SQL时,会将#{…}替换为?,生成预编译SQL,会自动设置参数值
    • 使用时机:参数传递,都使用#{…}
  • ${…}

    • 拼接SQL。直接将参数拼接在SQL语句中,存在SQL注入问题
    • 使用时机:如果对表名、列表进行动态设置时使用

注意事项:在项目开发中,建议使用#{…},生成预编译SQL,防止SQL注入安全。

新增

接口方法:

@Insert("insert into emp(username, name, gender, image, job, entrydate, dept_id, create_time, update_time) values (#{username}, #{name}, #{gender}, #{image}, #{job}, #{entrydate}, #{deptId}, #{createTime}, #{updateTime})")
    public void insert(Emp emp);

在这里插入图片描述

说明:#{…} 里面写的名称是对象的属性名

主键返回

在数据添加成功后,需要获取插入数据库数据的主键。

默认情况下,执行插入操作时,是不会主键值返回的。如果我们想要拿到主键值,需要在Mapper接口中的方法上添加一个Options注解,并在注解中指定属性useGeneratedKeys=true和keyProperty=“实体类属性名”。

@Mapper
public interface EmpMapper {
    
    //会自动将生成的主键值,赋值给emp对象的id属性
    @Options(useGeneratedKeys = true,keyProperty = "id")
    @Insert("insert into emp(username, name, gender, image, job, entrydate, dept_id, create_time, update_time) values (#{username}, #{name}, #{gender}, #{image}, #{job}, #{entrydate}, #{deptId}, #{createTime}, #{updateTime})")
    public void insert(Emp emp);

}

更新

接口方法:

    @Update("update emp set username = #{username}, name = #{name}, " +
            "gender =#{gender}, image = #{image}, job = #{job}, entrydate = #{entrydate}, dept_id = #{deptId}, update_time = #{updateTime} where id = #{id}")
    public int updateEmp(Emp emp);

查询

接口方法:

    @Select("select id, username, password, name, gender, image, job, entrydate, dept_id, create_time, update_time from tb_emp where id=#{id}")
    public Emp getById(Integer id);

数据封装

我们看到查询返回的结果中大部分字段是有值的,但是deptId,createTime,updateTime这几个字段是没有值的,而数据库中是有对应的字段值的,这是为什么呢?

原因如下:

  • 实体类属性名和数据库表查询返回的字段名一致,mybatis会自动封装。
  • 如果实体类属性名和数据库表查询返回的字段名不一致,不能自动封装。

解决方法;

  1. 给字段起别名,让别名与实体类属性一致

    @Select("select id, username, password, name, gender, image, job, entrydate, " +
            "dept_id AS deptId, create_time AS createTime, update_time AS updateTime " +
            "from emp " +
            "where id=#{id}")
    public Emp getById(Integer id);
    
  2. 通过@Results@Result注解手动映射封装

    @Results({@Result(column = "dept_id", property = "deptId"),
              @Result(column = "create_time", property = "createTime"),
              @Result(column = "update_time", property = "updateTime")})
    @Select("select id, username, password, name, gender, image, job, entrydate, dept_id, create_time, update_time from emp where id=#{id}")
    public Emp getById(Integer id);
    
  3. 开启mybatis的驼峰命名自动映射开关

    application.properties

    # 驼峰命名自动映射开关 a_column => aColumn
    mybatis.configuration.map-underscore-to-camel-case=true
    

查询(条件查询)

  • 方法1

    @Mapper
    public interface EmpMapper {
        @Select("select * from emp " +
                "where name like '%${name}%' " +
                "and gender = #{gender} " +
                "and entrydate between #{begin} and #{end} " +
                "order by update_time desc")
        public List<Emp> list(String name, Short gender, LocalDate begin, LocalDate end);
    }
    

    上述方式注意事项:

    1. 方法中的形参名和SQL语句中的参数占位符名保持一致
    2. 模糊查询使用${…}进行字符串拼接,这种方式呢,由于是字符串拼接,并不是预编译的形式,所以效率不高、且存在sql注入风险。
  • 方法2(推荐,解决SQL注入问题

    使用MySQL提供的字符串拼接函数:concat(‘%’ , ‘关键字’ , ‘%’)。

    @Mapper
    public interface EmpMapper {
    
        @Select("select * from emp " +
                "where name like concat('%',#{name},'%') " +
                "and gender = #{gender} " +
                "and entrydate between #{begin} and #{end} " +
                "order by update_time desc")
        public List<Emp> list(String name, Short gender, LocalDate begin, LocalDate end);
    
    }
    

    参数名说明

    在springboot2.x版本中

    在这里插入图片描述

在springboot的1.x版本/单独使用mybatis

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

golemon.

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值