一.演示:
1.SQL语句:
-- 条件查询员工
select * from emp where name like '%张%' and gender=1 and entrydate between '2010-01-01' and '2020-01-01' order by update_time desc ;
图片:
2.Mybatis演示:
a.接口EmpMapper里:
package com.itheima.mapper;
import com.itheima.pojo.Emp;
import org.apache.ibatis.annotations.*;
import java.time.LocalDate;
import java.util.List;
@Mapper
public interface EmpMapper {
//根据ID删除数据-->需要注解@Delete
/* 删除的id不确定,因此需要定义为动态的,在调用接口里的方法时要用到id,
所以要传递一个参数表示id。由于是动态的,还需要
Mybatis里提供的参数占位符即#{参数名字}
*/
@Delete("delete from emp where id = #{id}")
public int delete(Integer id); //有返回值时代表一共操作了几条记录
//新增员工
@Options(useGeneratedKeys = true,keyProperty = "id")
//useGeneratedKeys = true代表需要拿到生成的主键值,keyProperty = "id"代表获取的主键最终会封装到Emp对象的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);//形参是pojo里的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 void update(Emp emp);
/*//根据ID查询员工
*//*本例中根据id查询到的员工只有一个,因此用员工对象即可,无需集合*//*
@Select("select * from emp where id=#{id}")
public Emp getById(Integer id);*/
@Select("select * from emp where id=#{id}")
public Emp getById(Integer id);
//条件查询员工-->查询到的员工可能是多条记录,因此保险起见,用集合作为返回值
@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);
/* 注:对于name的模糊查询,不能用'%#{name}%',#{参数名称}这个占位符不能写在引号里,因为#{参数名称}最终生成的是预编译的SQL,最终要被?替代,
而?这个参数占位符是不能出现在引号里的-->所以要用'%${name}%'(#改为$)-->'%${name}%'不会生成预编译SQL,不会被?替代,而是直接拼接
*/
}
b.测试类:
package com.itheima;
import com.itheima.mapper.EmpMapper;
import com.itheima.pojo.Emp;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import java.time.LocalDate;
import java.util.List;
@SpringBootTest
class SpringbootMybatisCrudApplicationTests {
//注入接口对象
@Autowired
private EmpMapper empMapper;
//根据条件查询员工
@Test
public void testList(){
List<Emp> empList = empMapper.list("张", (short) 1, LocalDate.of(2010, 1, 1), LocalDate.of(2020, 1, 1));
System.out.println(empList);
}
}
c.运行结果:
注:#{参数名称}这个占位符不能写在引号里,因为#{参数名称}最终生成的是预编译的SQL,最终要被?替代,
而?这个参数占位符是不能出现在引号里的
${参数名称}是可以写在引号里的,因为这个不会生成预编译的SQL,不会被?替代
但${参数名称}这个占位符性能低,不安全还存在SQL注入问题,因此可以通过MySQL提供的一个函数来解决
-->concat字符串拼接函数
二.concat字符串拼接函数演示:
1.SQL语句:
a.源代码:
select * from emp where name like concat('%','张','%') and gender=1 and entrydate between '2010-01-01' and '2020-01-01' order by update_time desc ;
b.图片:
2.Mybatis演示:
a.接口EmpMapper里:
package com.itheima.mapper;
import com.itheima.pojo.Emp;
import org.apache.ibatis.annotations.*;
import java.time.LocalDate;
import java.util.List;
@Mapper
public interface EmpMapper {
//根据ID删除数据-->需要注解@Delete
/* 删除的id不确定,因此需要定义为动态的,在调用接口里的方法时要用到id,
所以要传递一个参数表示id。由于是动态的,还需要
Mybatis里提供的参数占位符即#{参数名字}
*/
@Delete("delete from emp where id = #{id}")
public int delete(Integer id); //有返回值时代表一共操作了几条记录
//新增员工
@Options(useGeneratedKeys = true,keyProperty = "id")
//useGeneratedKeys = true代表需要拿到生成的主键值,keyProperty = "id"代表获取的主键最终会封装到Emp对象的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);//形参是pojo里的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 void update(Emp emp);
/*//根据ID查询员工
*//*本例中根据id查询到的员工只有一个,因此用员工对象即可,无需集合*//*
@Select("select * from emp where id=#{id}")
public Emp getById(Integer id);*/
@Select("select * from emp where id=#{id}")
public Emp getById(Integer id);
//条件查询员工-->查询到的员工可能是多条记录,因此保险起见,用集合作为返回值
@Select("select * from emp where name like concat('%',#{name},'%') and gender=#{gender} and " +
"entrydate between #{begin} and #{end} order by update_time desc") //此时#{name}不在引号内,符合要求
//这个查询的数据无法封装为对象,因为其中入职日期是范围-->建议直接把参数放入方法形参
public List<Emp> list(String name, Short gender, LocalDate begin,LocalDate end);
}
b.测试类:
package com.itheima;
import com.itheima.mapper.EmpMapper;
import com.itheima.pojo.Emp;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import java.time.LocalDate;
import java.util.List;
@SpringBootTest
class SpringbootMybatisCrudApplicationTests {
//注入接口对象
@Autowired
private EmpMapper empMapper;
//根据条件查询员工
@Test
public void testList(){
List<Emp> empList = empMapper.list("张", (short) 1, LocalDate.of(2010, 1, 1), LocalDate.of(2020, 1, 1));
System.out.println(empList);
}
}