MyBatis基础操作

准备工作:

        准备数据库表emp

-- 部门管理
create table dept(
    id int unsigned primary key auto_increment comment '主键ID',
    name varchar(10) not null unique comment '部门名称',
    create_time datetime not null comment '创建时间',
    update_time datetime not null comment '修改时间'
) comment '部门表';

insert into dept (id, name, create_time, update_time) values(1,'学工部',now(),now()),(2,'教研部',now(),now()),(3,'咨询部',now(),now()), (4,'就业部',now(),now()),(5,'人事部',now(),now());



-- 员工管理
create table emp (
  id int unsigned primary key auto_increment comment 'ID',
  username varchar(20) not null unique comment '用户名',
  password varchar(32) default '123456' comment '密码',
  name varchar(10) not null comment '姓名',
  gender tinyint unsigned not null comment '性别, 说明: 1 男, 2 女',
  image varchar(300) comment '图像',
  job tinyint unsigned comment '职位, 说明: 1 班主任,2 讲师, 3 学工主管, 4 教研主管, 5 咨询师',
  entrydate date comment '入职时间',
  dept_id int unsigned comment '部门ID',
  create_time datetime not null comment '创建时间',
  update_time datetime not null comment '修改时间'
) comment '员工表';

INSERT INTO emp
	(id, username, password, name, gender, image, job, entrydate,dept_id, create_time, update_time) VALUES
	(1,'jinyong','123456','金庸',1,'1.jpg',4,'2000-01-01',2,now(),now()),
	(2,'zhangwuji','123456','张无忌',1,'2.jpg',2,'2015-01-01',2,now(),now()),
	(3,'yangxiao','123456','杨逍',1,'3.jpg',2,'2008-05-01',2,now(),now()),
	(4,'weiyixiao','123456','韦一笑',1,'4.jpg',2,'2007-01-01',2,now(),now()),
	(5,'changyuchun','123456','常遇春',1,'5.jpg',2,'2012-12-05',2,now(),now()),
	(6,'xiaozhao','123456','小昭',2,'6.jpg',3,'2013-09-05',1,now(),now()),
	(7,'jixiaofu','123456','纪晓芙',2,'7.jpg',1,'2005-08-01',1,now(),now()),
	(8,'zhouzhiruo','123456','周芷若',2,'8.jpg',1,'2014-11-09',1,now(),now()),
	(9,'dingminjun','123456','丁敏君',2,'9.jpg',1,'2011-03-11',1,now(),now()),
	(10,'zhaomin','123456','赵敏',2,'10.jpg',1,'2013-09-05',1,now(),now()),
	(11,'luzhangke','123456','鹿杖客',1,'11.jpg',5,'2007-02-01',3,now(),now()),
	(12,'hebiweng','123456','鹤笔翁',1,'12.jpg',5,'2008-08-18',3,now(),now()),
	(13,'fangdongbai','123456','方东白',1,'13.jpg',5,'2012-11-01',3,now(),now()),
	(14,'zhangsanfeng','123456','张三丰',1,'14.jpg',2,'2002-08-01',2,now(),now()),
	(15,'yulianzhou','123456','俞莲舟',1,'15.jpg',2,'2011-05-01',2,now(),now()),
	(16,'songyuanqiao','123456','宋远桥',1,'16.jpg',2,'2010-01-01',2,now(),now()),
	(17,'chenyouliang','123456','陈友谅',1,'17.jpg',NULL,'2015-03-21',NULL,now(),now());

        创建一个新的spring boot工程,选择引入对应的起步依赖(mybatis、mysql驱动、Lombok)

MyBatis基础操作_第1张图片

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

MyBatis基础操作_第2张图片

#驱å¨ç±»å称
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
#æ°æ®åºè¿æ¥çurl
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis
#è¿æ¥æ°æ®åºçç¨æ·å
spring.datasource.username=root
#è¿æ¥æ°æ®åºçå¯ç 
spring.datasource.password=1234

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

        准备Mapper接口EmpMapper

MyBatis基础操作_第3张图片

package com.itheima.mapper;

import org.apache.ibatis.annotations.*;

@Mapper
public interface EmpMapper {

}

根据主键删除

接口方法:

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

}
mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl

日志输出:

        可以在application。properties中,打开mybatis的日志,并指定输出到控制台

mybatis.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl

 预编译SQL

        优势:性能更高

        更安全(防止SQL注入)

SQL注入师通过操作输入的数据来修改事先定义好的SQL语句,以达到执行代码对服务器进行攻击的方法

参数占位符

#{...}:

        执行SQL时,会将#{...}替换为?,生成预编译SQL,会自动设置参数值

        使用时机:参数传递,都使用#{...}

${...}:

        拼接SQL,直接将参数拼接在SQL语句中,存在SQL注入问题

        使用时机:如果对表名、列表进行动态设置时使用

新增

SQL语句

insert into emp(username, name, gender, image, job, entrydate, dept_id, create_time, update_time)
    value ('tom', '汤姆', 1, '1.jpg', 1, 2002 - 12 - 12, now(), now());

接口方法:

    @Insert("insert into emp(username, name, gender, image, job, entrydate, create_time, update_time)" +
            "    value (#{usename}, #{name},#{gender}, #{image}, #{job},#{CreatTime}, #{Update Time});")
    public void insert(Emp emp);

MyBatis基础操作_第4张图片

 新增(主键返回)

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

           如:添加套餐数据时,还需要维护套餐菜品关系表数据

实现:

   @Options(useGeneratedKeys = true, keyProperty = "id")
    @Insert("insert into emp(username, name, gender, image, job, entrydate, create_time, update_time)" +
            "    value (#{usename}, #{name},#{gender}, #{image}, #{job},#{CreatTime}, #{Update Time});")
    public void insert(Emp emp);

MyBatis基础操作_第5张图片

 SQL语句:

 接口方法:

 查询(根据ID)

接口方法:

MyBatis基础操作_第6张图片

 数据封装

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

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

方案一:给字段起别名,让别名与实体类属性一致

MyBatis基础操作_第7张图片

 方案二:通过@Results,@Result注解手动映射封装

MyBatis基础操作_第8张图片

 方案三:开启mybatis的驼峰命名自动映射开关

MyBatis基础操作_第9张图片

 查询(根据条件)

MyBatis基础操作_第10张图片

解决like模糊匹配预编译的问题:

        使用concat()函数:         

你可能感兴趣的:(MySQL,javaWeb,Mybatis,数据库,mysql,mybatis)