目录
myBatis入门程序步骤
整体代码
myBatis日志集成框架logback
使用myBatis完成CRUD(增删改查)
什么是CRUD
MyBatis核⼼配置⽂件详解
SqlSessionFactoryBuilder、SqlSessionFactory对象作用域
properties 标签的配置
在WEB中应用MyBatis(用MVC架构)
是用Javassist生成DaoImpl
mybatis小技巧
#{}和${}区别
小技巧之typeAliases
idea配置文件模版
插入数据时获取自动生成的主键
mybatis参数处理
单个简单参数类型
Map参数类型 处理
实体类参数
多个参数传递分两种情况
查询专题之返回
动态SQL(重要)
if标签
where标签
trim标签
set标签
choose when otherwise 标签
批量删除
批量插入
mybatis高级映射及延迟加载
多对一
级联属性映射
association实现
分布查询(常用)
一对多
第一种collection
分步查询
mybatis缓存
mybatis逆向工程
分页插件PageHelper
mybatis注解
了解myBatis
myBatis本质是对JDBC的封装,通过MyBatis完成CRUD(CRUD是指在做计算处理时的增加(Create)、读取查询(Retrieve)、更新(Update)和删除(Delete)几个单词的首字母简写)属于持久层框架
myBatis一种思想(掌握):ORM(对象关系映射)
O(object):JVM中的java对象
R(Relational):关系型数据库
M(Mapping):映射
看图:
表名对应java中的一个类
字段对应java属性
把一条数据转换成java对象或将Java对象转换成一条数据这就叫做映射
myBatis是半自动化的ORM,因为SQL语句需要程序员自己编写
myBatis可以干嘛:将Java对象和数据库表中的数据进行相互转换
一、创建一个maven项目,在resources目录中防止资源文件,它相当于类的根路径。
二、开发步骤
第一步:规定打包方式为jar
com.jmm
mybatis-001-introduction
1.0.0
jar
第二步:引入依赖
-myBatis依赖和mysql依赖
org.mybatis
mybatis
3.5.10
mysql
mysql-connector-java
8.0.30
第三步:编写mybatis核心配置文件:mybatis-config.xml
mybatis-config.xml:这个名字不是固定的但是普遍使用该名字,一般情况下将它放在根路径下。该代码段在下载的mybatis压缩文件中有一个PDF(或者搜索:mybatis中文文档),里面有相应的代码,虽然现在不理解代码意思,没关系先让代码跑起来,下边会解释。里边的driver-URL-username-password换成自己的数据库信息
第四步:编写XxxxMapper.xml文件
这个配置文件是用来编写SQL语句的,命名规则:一般情况你写的是t_student表,起名StudentMapper.xml,我这里是t_car的所以这里起名CarMapper.xml.
该文件的位置是随意的,我这里将他放在了根目录下,也就是resources下
第五步:在mybatis-config.xml文件中指定XxxxMapper.xml文件的路径:
注意:resource属性会自动葱类的根路径下开始查找资源
第六步:编写mybatis程序(使用mybatis的类库,编写陈旭连接数据库做增删改查)
在mybatis中,负责执行SQL语句的对象叫:SqlSession
该对象是专门用来执行SQL语句的,是一个Java程序和数据库之间的一次对话
但想要获取该对象,需要先获取SqlSessionFactory对象,通过SqlSessionFactor有工厂来生产该对象,那怎样获取这个工厂呢?
需要通过SqlSessionFactoryBuilder对象,通过他的build的方法获取这个工厂
整体顺序:SqlSessionFactoryBuilder-->SqlSessionFactor-->SqlSession
pom.xml:规定打包方式和引入依赖
4.0.0
com.jmm
mybatis-001-introduction
1.0.0
jar
mybatis-001-introduction
http://www.example.com
UTF-8
1.7
1.7
junit
junit
4.11
test
org.mybatis
mybatis
3.5.10
mysql
mysql-connector-java
8.0.30
maven-clean-plugin
3.1.0
maven-resources-plugin
3.0.2
maven-compiler-plugin
3.8.0
maven-surefire-plugin
2.22.1
maven-jar-plugin
3.0.2
maven-install-plugin
2.5.2
maven-deploy-plugin
2.8.2
maven-site-plugin
3.7.1
maven-project-info-reports-plugin
3.0.0
mybatis-config.xml:文件放置位置
看到这里,代码语句或许有疑惑,先别急先让程序跑起来后面会解释。
CarMapper.xml:主要编写SQL语句,注意格式
insert into t_car(id,car_num,brand,guide_price,produce_time,car_type)
value (null,'1003','丰田霸道',30.0,'2000-10-11','燃油车')
MyBatisintrodyctiojTest
public class MyBatisCompleteTest {
public static void main(String[] args) {
SqlSession sqlSession =null;
try {
// 获取SqlSessionFactoryBuilder对象
SqlSessionFactoryBuilder sqlSessionFactoryBuilder = new SqlSessionFactoryBuilder();
// 获取SqlSessionFactory对象
// Resources.getResourceAsStream():获取文件路径
// Resources.getResourceAsStream默认从根路径下找资源,这里"mybatis-config.xml"直接放到了根路径下,所以直接写
// 一个数据库对应一个SqlSessionFactory对象
SqlSessionFactory sqlSessionFactory = sqlSessionFactoryBuilder.build(Resources.getResourceAsStream("mybatis-config.xml"));
// 获取SqlSession对象,开启回话,底层开启事务
sqlSession = sqlSessionFactory.openSession();
// 执行SQL语句
int count = sqlSession.insert("insertCar");
System.out.println("输入条数="+count);
// 没有异常提交事务
sqlSession.commit();
} catch (Exception e) {
// 发生异常回滚事务
if(sqlSession!=null){
sqlSession.rollback();
}
e.printStackTrace();
}finally {
// 关闭回话释放资源
if(sqlSession!=null){
sqlSession.close();
}
}
}
引⼊⽇志框架的⽬的是为了看清楚mybatis执⾏的具体sql。
这个是myBatis自带的,是标准⽇志组件,只需要在mybatis-config.xml⽂件中添加以下配置:
也可以集成其他的⽇志组件,例如:log4j,logback等。
第⼀步:引⼊logback和log4j相关依赖
ch.qos.logback
logback-classic
1.2.3
log4j
log4j
1.2.17
第⼆步:引⼊logback相关配置⽂件(⽂件名叫做logback.xml或logback-test.xml,放到类路径当中)这个文件名称必须叫logback.xml,放在根目录文件下。这个文件可直接复制
%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} -%msg%n
可以配置也可以配置
结果:
c:Create增
R:Retrieve查
u:update改
D:delete删
上述案例我们的SQL语句中字段值是写死的,这种在实际开发是不推荐的。
insert into t_car(id,car_num,brand,guide_price,produce_time,car_type)
value (null,'1003','丰田霸道',30.0,'2000-10-11','燃油车')
在JDBC中我们使用?占位符传值,那马仔mybatis中我们使用和?等效的#{} 作为占位符
首先我先写了一个工具类,避免写测试写的多时要写一些重复的代码
public class SqlSessionUtil {
// 工具类的构造方法一般都是私有化的
// 工具类中所有的方法都是静态的,直接采用类名即可调用,不需要new对象
// 为了防止new对象构造方法私有化
private SqlSessionUtil(){}
private static SqlSessionFactory sqlSessionFactory;
// 因为一个sqlSessionFactory对应一个数据库,对单个数据库操作时只需创建一个即可
static{
try {
sqlSessionFactory = new SqlSessionFactoryBuilder().
build(Resources.getResourceAsStream("mybatis-config.xml"));
} catch (Exception e) {
e.printStackTrace();
}
}
public static SqlSession openSession(){
return sqlSessionFactory.openSession();
}
}
增:
通过map集合给一个SQL语句传值
public class CarMapperTest {
@Test
public void testInsertCar(){
SqlSession sqlSession = SqlSessionUtil.openSession();
Map map=new HashMap<>();
map.put("k1","1111");
map.put("k2","比亚迪");
map.put("k3",10.0);
map.put("k4","2020-11-11");
int count = sqlSession.insert("insertCar",map);
System.out.println(count);
sqlSession.commit();
sqlSession.close();
}
}
insert into t_car(id,car_num,brand,guide_price,produce_time,car_type)
value (null,#{k1},#{k2},#{k3},#{k4},#{k5})
通过POJO(又称bean类)对象给一个SQL语句传值
首先根据数据库字段创建POJO包下的类,并生成相应的构造、get、set、tostring方法
public class Car {
// 数据库表中的字段应该和破击类的属性一一对应
// 建议使用包装类,这样可以防止null的问题
private Long id;
private String carNum;
private String brand;
private Double guidePrice;
private String produceTime;
private String carType;
测试类
public class CarMapperTest {
@Test
public void testInsertCarPOJO(){
SqlSession sqlSession = SqlSessionUtil.openSession();
Car car = new Car(null,"3333","比亚迪秦",30.0,"2022-01-11","新能源");
int count = sqlSession.insert("insertCar",car);
System.out.println(count);
sqlSession.commit();
sqlSession.close();
}
SQL语句格式(与POJO类里的属性相对应)
insert into t_car(id,car_num,brand,guide_price,produce_time,car_type)
value (null,#{carNum},#{brand},#{guidePrice},#{produceTime},#{carType})
删:
delete from t_car where id=#{id}
@Test
public void testDeleteCar(){
SqlSession sqlSession =SqlSessionUtil.openSession();
int count= sqlSession.delete("a",9);
System.out.println(count);
sqlSession.commit();
sqlSession.close();
}
改:
update t_car set car_num=#{carNum},brand=#{brand},guide_price=#{guidePrice},produce_time=#{produceTime},car_type=#{carType} where id=#{id}
@Test
public void testUpdateById(){
SqlSession sqlSession= SqlSessionUtil.openSession();
Car car = new Car(4L,"9999","凯美瑞",30.3,"1999-01-19","燃油车");
int count = sqlSession.update("updataById",car);
System.out.println(count);
sqlSession.commit();
sqlSession.close();
}
查询
注意:查询是会产生一个结果集的,一起看一下mybatis是怎样处理查询结果集的
对于⼀个查询语句来说,你需要指定它的“结果类型”或者“结果映射
查询一条数据
测试类
@Test
public void testSelectById(){
SqlSession sqlSession = SqlSessionUtil.openSession();
Object car = sqlSession.selectOne("selectById",1);
System.out.println(car);
sqlSession.close();
}
查询结果:注意看后面几个字段都是null值,但是在数据库这些字段都是有值的
原因是:查询结果的字段名和java类的属性名对应不上的
数据库字段名和属性类名
解决方法:可以采用暗色关键字起别名,当然还有其他方法别着急,我们慢慢看。
更改后的查询语句
查询所有数据(List集合)
测试类
@Test
public void testSelectAll(){
SqlSession sqlSession = SqlSessionUtil.openSession();
List
到这里增删改查内容已结束,有个知识点没提及,就是CarMapper.xml文件中美好的 namespace
他称作命名空间,主要是用来解决SQLid冲突的。
当你有两个XxxxMapper.xml文件时,里面select的id都是“selectCar1”,此时测试文件文件调用select语句会不知道调用那个文件的select,会报错
解决方法:测试文件中的id写成“namespace.id”
Listcars = sqlSession.selectList("car2.selectCarAll");
增删改查阶段结束了,只是直到配置文件格式怎么写,但是配置文件各行代码还是 不明确,没关系下面就开始分析配置文件语句。
将mybatis-config.xml文件先拿过来
引入properties文件,使数据库信息修改时可以不再代码内部处理
创建properties文件
jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test
jdbc.username=root
jdbc.password=12345678
在mybatis- config.xml引入配置文件
以银行转账为例
适用技术:HTML+Servlet+MyBatis
一、数据库准备
二、创建项目
将为web.xml文件版本改为高版本
Pom.xml 打包方式为war
引入依赖
4.0.0
com.test
mybatis-002-web
war
1.0
mybatis-002-web Maven Webapp
http://maven.apache.org
UTF-8
17
17
org.mybatis
mybatis
3.5.1
mysql
mysql-connector-java
5.1.9
ch.qos.logback
logback-classic
1.2.11
jakarta.servlet
jakarta.servlet-api
5.0.0
provided
mybatis-002-web
maven-clean-plugin
3.1.0
maven-resources-plugin
3.0.2
maven-compiler-plugin
3.8.0
maven-surefire-plugin
2.22.1
maven-war-plugin
3.2.2
maven-install-plugin
2.5.2
maven-deploy-plugin
2.8.2
编写相关配置文件:
jdbc.properties
jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test?useSSL=false&serverTimezone=UTC&characterEncoding=utf-8&autoReconnect=true
jdbc.username=root
jdbc.password=12345678
mybatis-config.xml
CarMapper.xml(这个文件应该等到编写了dao里边定义的数据库方法后在编写,我只是将它放到这里)
update t_act set balance = #{balance} where actno=#{actno}
log可以引用前面的,到这里就该编写前端界面
银行转账账户
到这里要编写具体的转账实现
首先搭好MVC架子,准备包
定义pojo类Account
package com.test.pojo;
/**
* 账户类
* @acount 老杜
* @version 1.0
* @since 1.0
*/
public class Account {
private Long id;
// 账户号
private String actno;
// 余e
private Double balance;
public Account() {
}
public Account(Long id, String actno, Double balance) {
this.id = id;
this.actno = actno;
this.balance = balance;
}
public Long getID() {
return id;
}
public void setID(Long ID) {
this.id = ID;
}
public String getActno() {
return actno;
}
public void setActno(String actno) {
this.actno = actno;
}
public Double getBalance() {
return balance;
}
public void setBalance(Double balance) {
this.balance = balance;
}
@Override
public String toString() {
return "Account{" +
"ID=" + id +
", actno='" + actno + '\'' +
", balance=" + balance +
'}';
}
}
准备工具类
package com.test.utils;
import org.apache.ibatis.io.Resources;
import org.apache.ibatis.session.SqlSession;
import org.apache.ibatis.session.SqlSessionFactory;
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
import java.io.IOException;
public class SqlSessionUtil {
private static SqlSessionFactory sqlSessionFactory;
static {
try {
sqlSessionFactory = new SqlSessionFactoryBuilder().
build(Resources.getResourceAsStream("mybatis-config.xml"));
} catch (IOException e) {
throw new RuntimeException(e);
}
}
// ThreadLocal用来存放当前线程的副本是AccountServiceImpl里创建的sqlsession
private static ThreadLocal local = new ThreadLocal<>();
public static SqlSession openSession(){
// 返回当前线程局部变量的副本
SqlSession sqlSession = local.get();
if (sqlSession == null){
sqlSession = sqlSessionFactory.openSession();
// 将sqlsession对象绑定在当前线程也就是将当前线程局部变量的副本设置为指定的值
local.set(sqlSession);
}
return sqlSession;
}
/**
* 关闭sqksession对象
*
*/
public static void close(SqlSession sqlSession){
if(sqlSession!=null){
sqlSession.close();
// 移除sqlsession对象和当前现成的绑定关系应为tomcat支持线程池,因为用过线程T1,可能下一次还会用到T1
// 也就是删除此线程局部变量副本设置的指定值
local.remove();
}
}
}
编写dao里的AccountDao接口和AccountDaoImpl实现类
import com.test.pojo.Account;
import org.apache.ibatis.annotations.Mapper;
/**
* 账户的dao对象负责t_cat标中数据的增删改查
*
*/
public interface AccountDao {
/**
* 根据账号查询账户信息
*
* @param actno 账号
* @return
*/
Account selectByActno(String actno);
/**
* 更新账户信息
* 因为要更新账户所以要吧整个账户对象Account传进来
* @param act 被更新的账户对象
* @return 1 更新成功 其他失败
*/
int updateActno(Account act);
}
package com.test.dao.impl;
import com.test.dao.AccountDao;
import com.test.pojo.Account;
import com.test.utils.SqlSessionUtil;
import org.apache.ibatis.session.SqlSession;
public class AccountDaoImpl implements AccountDao {
@Override
public Account selectByActno(String actno) {
// 因为AccountServiceImpl里创建了sqlsession对象,所以在调用openSession方法时不走if,因为创建过一次不为空所以他们是一个sqlsession对象
SqlSession sqlSession = SqlSessionUtil.openSession();
Account account = sqlSession.selectOne("selectByActno",actno);
return account;
}
@Override
public int updateActno(Account act) {
SqlSession sqlSession = SqlSessionUtil.openSession();
int count = sqlSession.update("updatByActno", act);
return count;
}
}
编写AccountService接口和AccountServiceimpl
package com.test.service;
import com.test.exceptions.MoneyNotEnoughException;
import com.test.exceptions.TransferException;
import javax.xml.transform.TransformerException;
/**
* 账户业务类
* @author :老杜
* @version 1.0
* @since 1.0
* 之所以要有接口,是因为层与层之间要用借口链接,降低耦合
* 业务类中的每个方法起名时要见明知意
*/
public interface AccountService {
/**
* 账户转账业务
* @param fromActno 转出账号
* @param toActno 转入账号
* @param money 转账金额
*/
void transfer(String fromActno,String toActno,double money)
throws MoneyNotEnoughException,TransferException;
}
package com.test.service.impl;
import com.test.dao.AccountDao;
import com.test.dao.impl.AccountDaoImpl;
import com.test.exceptions.MoneyNotEnoughException;
import com.test.exceptions.TransferException;
import com.test.pojo.Account;
import com.test.service.AccountService;
import com.test.utils.SqlSessionUtil;
import org.apache.ibatis.session.SqlSession;
/**
* fromAct:转出账户
* toActno:转入账户
* money:转账金额
* balance:余额
*/
public class AccountServiceImpl implements AccountService {
private final AccountDao account = new AccountDaoImpl();
@Override
public void transfer(String fromActno, String toActno, double money) throws MoneyNotEnoughException,TransferException {
SqlSession sqlSession = SqlSessionUtil.openSession();
// 1.判断转出账户余额是否充足
Account fromAct = account.selectByActno(fromActno);
// 2。如果余额不足提示用户
if(fromAct.getBalance()
编写web包下的AccountServlet
该类主要用于接收前端传过来的文本框信息 和调用成功与异常应反悔的界面,不必事先具体的事物
package com.test.service.impl;
import com.test.dao.AccountDao;
import com.test.dao.impl.AccountDaoImpl;
import com.test.exceptions.MoneyNotEnoughException;
import com.test.exceptions.TransferException;
import com.test.pojo.Account;
import com.test.service.AccountService;
import com.test.utils.SqlSessionUtil;
import org.apache.ibatis.session.SqlSession;
/**
* fromAct:转出账户
* toActno:转入账户
* money:转账金额
* balance:余额
*/
public class AccountServiceImpl implements AccountService {
private final AccountDao account = new AccountDaoImpl();
@Override
public void transfer(String fromActno, String toActno, double money) throws MoneyNotEnoughException,TransferException {
SqlSession sqlSession = SqlSessionUtil.openSession();
// 1.判断转出账户余额是否充足
Account fromAct = account.selectByActno(fromActno);
// 2。如果余额不足提示用户
if(fromAct.getBalance()
使用Javassist可以只写接口不写接口实现类,Javassist可以帮你实现接口实现类的实现和对象的创建,比如转账项目不再写AccountDaoImpl,直接加上Javassist语句
private AccountDao account =
SqlSessionUtil.openSession().getMapper(AccountDao.class);
完整代码
public class AccountServiceImpl implements AccountService {
//private final AccountDao account = new AccountDaoImpl();
private AccountDao account = SqlSessionUtil.openSession().getMapper(AccountDao.class);
@Override
public void transfer(String fromActno, String toActno, double money) throws MoneyNotEnoughException,TransferException {
SqlSession sqlSession = SqlSessionUtil.openSession();
// 1.判断转出账户余额是否充足
Account fromAct = account.selectByActno(fromActno);
// 2。如果余额不足提示用户
if(fromAct.getBalance()
首先看一个查询之间的区别
我们领查询的条件carType=新能源 #{}的执行结果:[main] DEBUG c.p.mybatis.mapper.CarMapper.selectByCarType - ==> Preparing: select id, car_num as carNum, brand, guide_price as guidePrice, produce_time as produceTime, car_type as carType from t_car where car_type = ? [main] DEBUG c.p.mybatis.mapper.CarMapper.selectByCarType - ==> Parameters: 新能源(String) [main] DEBUG c.p.mybatis.mapper.CarMapper.selectByCarType - <== Total: 2
${}的执行结果:[main] DEBUG c.p.mybatis.mapper.CarMapper.selectByCarType - ==> Preparing: select id, car_num as carNum, brand, guide_price as guidePrice, produce_time as produceTime, car_type as carType from t_car where car_type = 新能源 [main] DEBUG c.p.mybatis.mapper.CarMapper.selectByCarType - ==> Parameters:
注意看where car_type = 后面的区别,#{}:where car_type =? ${}:where car_type =新能源。
#{}: 底层使用PreparedStatement。特点:先进行SQL语句的编译,然后给SQL语句的占位符问号?传值。可以避免SQL注入的风险。 ${}:底层使用Statement。特点:先进行SQL语句的拼接,然后再对SQL语句进行编译。存在SQL注入的风险。 优先使用#{},这是原则。避免SQL注入的风险。Sql注入是指web应用程序对用户输入数据的合法性没有判断或过滤不严,攻击者可以在web应用程序中事先定义好的查询语句的结尾上添加额外的SQL语句,在管理员不知情的情况下实现非法操作,从而进一步得到相应的数据信息。
那么问题来了我们什么时候使用${}呢
先看下面的查询代码
#{}的执行结果:
Preparing: select
id, car_num as carNum, brand, guide_price as guidePrice, produce_time as produceTime, car_type as carType
from t_car order by produce_time ?
Parameters: asc(String)
将它转换一下:
select
id, car_num as carNum, brand, guide_price as guidePrice, produce_time as produceTime, car_type as carType
from t_car order by produce_time 'asc'
${}的执行结果:
Preparing:
select id, car_num as carNum, brand, guide_price as guidePrice, produce_time as produceTime, car_type as carType
from t_car order by produce_time asc
Parameters:
1.这种我们需要将关键字放进sql语句中,只能使用${},因为#{}是以值的形式放到SQL语句当中的而不是关键字。
2.向sql语句中拼接表名时,使用${}
比如,在业务中,如果数据量较大的话,会存在分表情况
日志表:如果只有一张表,这张表每天都会产生很多log,漫漫的这个表中的数据就会很多,此时我们可以让他每天生成一个新表。以每天的日期命名:t_log_20221016. t_log_20221017......
想知道某一天的信息,对其拼串即可(因为要把表名作为关键字,而不是具体参数,所以使用${})
批量删除:
对应的SQL语句:
delete from t_car where id=1 or id=2; delete from t_car where id in(1,2,3)
假设使用in,前段传来1,2,3 这时该用${}
模糊查询:like
需求:根据汽车品牌进行模糊查询
select * from t_car where brand like '%奔驰%';
select * from t_car where brand like '%比亚迪%';第一种方案:
'%${brand}%'
第二种方案:concat函数,这个是mysql数据库当中的一个函数,专门进行字符串拼接
concat('%',#{brand},'%')
第三种方案:比较鸡肋了。可以不算。
concat('%','${brand}','%')
第四种方案:(常用)
"%"#{brand}"%"5. 关于MyBatis中别名机制:
(常用)
所有别名不区分大小写。
namespace不能使用别名机制。
6. mybatis-config.xml文件中的mappers标签。
要求类的根路径下必须有:CarMapper.xml
要求在d:/下有CarMapper.xml文件
mapper标签的属性可以有三个:
resource:这种方式是从类的根路径下开始查找资源。采用这种方式的话,你的配置文件需要放到类路径当中才行。
url: 这种方式是一种绝对路径的方式,这种方式不要求配置文件必须放到类路径当中,哪里都行,只要提供一个绝对路径就行。这种方式使用极少,因为移植性太差。
class: 这个位置提供的是mapper接口的全限定接口名,必须带有包名的。
思考:mapper标签的作用是指定SqlMapper.xml文件的路径,指定接口名有什么用呢?
如果你class指定是:com.powernode.mybatis.mapper.CarMapper
那么mybatis框架会自动去com/powernode/mybatis/mapper目录下查找CarMapper.xml文件。
注意:也就是说:如果你采用这种方式,那么你必须保证CarMapper.xml文件和CarMapper接口必须在同一个目录下。并且名字一致。CarMapper.xml文件是在resource文件下,CarMapper接口在Java文件下 ,所以只需要在resources目录下创建一个和CarMapper接口的报名一样的目录即可。
CarMapper接口-> CarMapper.xml
LogMapper接口-> LogMapper.xml
....提醒!!!!!!!!!!!!!!!!!!!!!!!
在IDEA的resources目录下新建多重目录的话,必须是这样创建:
com/powernode/mybatis/mapper
不能这样:
com.powernode.mybatis.mapper但如果class较多的话,可以写cheng包的方式
我们先来看看CarMapper.xml文件
我们可以看到resulType属性是用来制定查询结果集封装类型的,但这个名字太长,硬刺我们可以给他起个别名,我们可以在mybatis-config.xml中使用typeAliases
第一种:该段代码应该放在envorments标签上,配置文件引用下边
type:指定给哪个类起别名
alias:别名(不区分大小写)
虽然这样一定程度上减少了代码书写的复杂度,但如果有100行代码要写resultType,那么就要写100行
所以有了第二种,也是最常用的一种
第二种:只需要指定包名,该包下的所有勒都会起别名,(别名为类名)不区分大小写
两个属性:useGeneratedkeys=“true”:使用自动生成的主建值
keyProperty=“ID”指定主建值赋值给对象的那个属性
insert into t_car values(null.#{carNum}
这里id是null,但输出id是有结果的
简单类型包括:
- byte、short、int、long、double、char
- Byte、Short、Integer、Float、Double、Character
- String
- Java.util.Date
- java.sql.Date
建表
注意date类型和Charsert类型
StudentMapper.java
public interface StudentMapper {
List selectById(Long id);
List selectByName(String name);
List selectByBirth(Date birth);
List selectBySex(Character sex);
}
StudentMapper.xml
studentMapperTest.java:注意看日期类型的和Character类型(第三个和第四个)
public class StudentMapperTest {
@Test
public void testselectById(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
List students = mapper.selectById(1L);
students.forEach(student -> System.out.println(student));
sqlSession.close();
}
@Test
public void testSelectByName(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
List students = mapper.selectByName("张三");
students.forEach(student -> System.out.println(student));
sqlSession.close();
}
@Test
public void testSelectByBirth() throws ParseException {
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Date birth = sdf.parse("1980-10-11");
List students = mapper.selectByBirth(birth);
students.forEach(student -> System.out.println(student));
sqlSession.close();
}
@Test
public void testSelectBySex(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
Character sex = Character.valueOf('男');
List students = mapper.selectBySex(sex);
students.forEach(student -> System.out.println(student));
sqlSession.close();
}
}
这种方式是手动封装Map集合,将每个条件以key和value的形式存在集合中。
接口格式
int insertStudentByMap (Map map);
insert into t_student(id,name,age,height,sex,birth)
values (null,#{姓名},#{年龄},#{身高},#{性别},#{生日})
@Test
public void testinsertStudentByMap(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
Map map = new HashMap<>();
map.put("姓名","赵六");
map.put("年龄",20);
map.put("身高",1.81);
map.put("性别",'男');
map.put("生日",new Date());
mapper.insertStudentByMap(map);
sqlSession.commit();
sqlSession.close();
}
int insertStudentByPOJO(Student student);
insert into t_student(id,name,age,height,sex,birth)
values (null,#{name},#{age},#{height},#{sex},#{birth})
@Test
public void testtestinsertStudentByPOJO(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
Student student = new Student();
student.setName("张飞");
student.setAge(22);
student.setHeight(1.90);
student.setSex('男');
student.setBirth(new Date());
mapper.insertStudentByPOJO(student);
sqlSession.commit();
sqlSession.close();
}
第一种
* 多参数 * 这种情况mybatis会自动创建一个Map集合 并且参数形式如下 * map.put("arg0",name} * map.put("arg1",name} * map.put("param1",name} * map.put("param2",name}
代码
ListselectByNameAndSex(String name,Character sex)
public void testselectByNameAndSex(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
List students = mapper.selectByNameAndSex("张三", '男');
students.forEach(student -> System.out.println(student));
sqlSession.close();
}
第二种常用
* Param注解:底层是一个map集合 * mybatis框架的底层实现原理 * map.Put(""name",name) * map.put("sex",sex) * * @Param name 类型 name * @Param sex 类型 sex
List selectByNameAndSex2(@Param("name") String name,@Param("sex") Character sex);
@Test
public void testselectByNameAndSex2(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
List students = mapper.selectByNameAndSex2("张三",'男');
students.forEach(student -> System.out.println(student));
sqlSession.close();
}
根据id查询car信息,这里只能返回一条数据。 其他的写法和上百遍的一样这里不不不在详细写
Car selectById(Long id);
获取所有的car,需要一个list集合
List selectAll();
根据品牌进行模糊查询 这里的模糊查询的结果有一个,如果有多条结果会报错
如果要返回多条使用list即可
Car selectBByBrandLike(String brand);
ListselectById2(String brand);
@Test
public void selectBByBrandLike(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
Car car = mapper.selectBByBrandLike("大众");
System.out.println(car);
sqlSession.close();
}
* 根据id获取汽车信息。将汽车信息放到Map集合中。 * 注意 这里是返回Map,并不是返回某个实体类 * 但这种只能返回一条,看下面map对应的 * | id | car_num | brand | guide_price | produce_time | car_type | * * +-----+---------+----------+-------------+--------------+----------+ * * | 158 | 1111 | 比亚迪汉 | 3.00 | 2000-10-10 | 新能源 | * * +-----+---------+----------+-------------+--------------+----------+ * * * * Map* * k v * * ----------------------- * * "id" 158 * * "car_num" 1111 * * "brand" 比亚迪汉
Map selectByIdRetMap(String brand);
应为返回的map集合,没有对应的实体类,所以这里的type应该是java.util.Map
@Test
public void testselectByIdRetMap(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
Map car = mapper.selectByIdRetMap("大众");
System.out.println(car);
sqlSession.close();
}
如果要返回多条map集合可以使用list
List
@Test
public void testselectAllRetListMap(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
List
查询所有的car,返回一个大Map集合 * Map集合的key是每条记录的主建值,这里是id * map集合的value是每条记录所有值,这种的好处 跟上边比查询效率高 比如:你需要查询ID=3的,上边需要便利三个{}才能找到id=3 er这种只需要根据key=3快速找到* { * 1={...} * 2={...} * }
@MapKey("id")//将查询结果的id值作为整个大Map集合的key。
Map> selectAllRetMap();
@Test
public void testSelectAllRetMap(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
Map> maps = mapper.selectAllRetMap();
System.out.println(maps);
sqlSession.close();
}
还记得我们结果列名和Java属性名对不上我们怎么处理的吗
我们选择了起别名
现在我们有了更好的机制
使用resultMap进行结果映射或者使用驼峰命名映射,我们一个一个来看
resultMap
List selectAllByResultMap();
注意下面书写格式
@Test
public void testSelectAllByResultMap(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
List cars = mapper.selectAllByResultMap();
cars.forEach(car -> System.out.println(car));
sqlSession.close();
}
驼峰命名前提:
属性名遵寻Java命名规范:首字母小写,后面每个单词首字母大写
数据库列名遵循sql命名规范:全部小写,单词之间采用下划线分割
在mybatis-config中配置:
List selectAllByMapUnderscoreToCamelCase();
@Test
public void testSelectAllByMapUnderscoreToCamelCase(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
List cars = mapper.selectAllByMapUnderscoreToCamelCase();
cars.forEach(car-> System.out.println(car));
sqlSession.close();
}
查询总记录条数
Long selectTotal();
@Test
public void testSelectTotal(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
Long total = mapper.selectTotal();
System.out.println("总记录条数:" + total);
sqlSession.close();
}
开发中 很多业务场景都会使用到SQL语句进行动态拼接:
批量删除,插入等
多条件更新
下面我们介绍他的标签和用法吧
使用场景:多条件查询
需求:根据 brand 品牌 guidePrice 指导价 carType 汽车类型三个条件查询相应信息
编写接口
List selectByMultiCondition(@Param("brand") String brand,
@Param("guidePrice") Double guidePrice,
@Param("carType") String carType);
具体SQL语句编写
这里加1=1 是恒成立的意思,只有加上这个条件,当三个条件都为null,也就是三个if都不走也不会报错 否则日志上的语句是select * from powernode where ,where子句后面什么都没有会报错-if标签中test属性是必必须的 if标签中test的属性是false和true 如果test是true ,则if标签中的SQL语句会进行拼接,反之并不会 当使用了@param注解,那么test中要出现@param注解指定的参数名。 @param("brand")那么test这里只能使用brand 没有使用注解时 test要出现的是:param1或 agr0 当时用了POJO中的实体类时test使用的是POJO属性名 在mybatis只能使用and拼接
测试
@Test
public void testSelectByMultiCondition(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
// List cars = mapper.selectByMultiCondition("凯美瑞",3.0,"新能源");
//List cars = mapper.selectByMultiCondition("", null, "");
List cars = mapper.selectByMultiCondition("凯美瑞", null, "");
// List cars = mapper.selectByMultiCondition("", 2.0, "新能源");
cars.forEach(car -> System.out.println(car));
sqlSession.close();
}
所有条件都为空时,where标签保证不会生成where子句
会自动去除某些田间前面多余的and和or
接口
List selectByMultiConditionWithWhere(@Param("brand") String brand,
@Param("guidePrice") Double guidePrice,
@Param("carType") String carType);
这里使用了where表情不用再加恒成立的语句
@Test
public void testSelectByMultiConditionWithWhere(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
List cars = mapper.selectByMultiConditionWithWhere("凯美瑞",3.0,"新能源");
//List cars = mapper.selectByMultiConditionWithWhere("", null, "");
// List cars = mapper.selectByMultiConditionWithWhere("比亚迪", null, "");
// List cars = mapper.selectByMultiConditionWithWhere("", 2.0, "新能源");
cars.forEach(car -> System.out.println(car));
sqlSession.close();
}
他可以动态的管理前后缀
四个属性
prefix:加前缀 suffix:加后缀 prefixOverrides:删除前缀 suffixOverrides:删除后缀
List selectByMultiConditionWithTrim (@Param("brand") String brand,
@Param("guidePrice") Double guidePrice,
@Param("carType") String carType);
/**
@Test
public void testSelectByMultiConditionWithTrim(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
List cars = mapper.selectByMultiConditionWithTrim("凯美瑞",3.0,"新能源");
//List cars = mapper.selectByMultiConditionWithTrim("", null, "");
// List cars = mapper.selectByMultiConditionWithTrim("比亚迪", null, "");
// List cars = mapper.selectByMultiConditionWithTrim("", 2.0, "新能源");
cars.forEach(car -> System.out.println(car));
sqlSession.close();
}
主要是用在update语句中,用该关键字去掉多余的“,” 以及只更改需要的值时其他字段不会为null
int updateBySet(Car car);
sql语句中如果我们使用以前的方式编写
update powernode
set
car_num = #{carNum},
brand = #{brand},
guide_price = #{guidePrice},
produce_time = #{produceTime},
car_type = #{carType}
where id = #{id}
当我们更改这条语句
Car car = new Car(12L,null,"霸道",null,null,"燃油)
执行完后:其他字段为null 但使用set标签不会出现这种情况
update powernode
car_num =#{carNum},
brand =#{brand},
guide_price =#{guidePrice},
produce_time =#{produceTime},
car_type =#{carType},
where
id =#{id}
测试:还是那条数据我们将他恢复成都有数据后将它品牌改为大众
public void testUpdateById(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
Car car = new Car(12L,null,"大众",null,null,"燃油车");
mapper.updateById(car);
sqlSession.commit();
sqlSession.close();
}
注意:这三个标签是一起用的
它等同于if else :只会有一个分支被执行
List selectByChoose(@Param("brand") String brand,
@Param("guidePrice")Double guidePrice,
@Param("carType") String carType);
public void testSelectByChoose(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
List cars = mapper.selectByChoose("丰田霸道",1.0,"新能源");
cars.forEach(car -> System.out.println(car));
sqlSession.close();
}
需要使用到foreach标签,来便利数组和集合
foreach标签的属性: collection:指定数组或者集合 item:代表数组或集合中的元素 separator:循环之间的分隔符 open: foreach循环拼接的所有sql语句的最前面以什么开始。 close: foreach循环拼接的所有sql语句的最后面以什么结束。 collection="ids" 第一次写这个的时候报错了,错误信息是:[array, arg0] 什么意思? map.put("array", 数组); map.put("arg0", 数组);使用in关键字来删除
int deleteByIds(@Param("ids") Long[] ids);
delete from powernode where id in(
#{id}
)
public void testDeleteByIds(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
Long[] ids = {1L,2L};
int count = mapper.deleteByIds(ids);
System.out.println(count);
sqlSession.commit();
sqlSession.close();
}
使用or关键字批量删除
int deleteByIds2(@Param("ids") Long[]ids);
delete from powernode where(
id=#{id}
)
public void testDeleteByIds2(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
Long[] ids = {3L,4L};
int count = mapper.deleteByIds2(ids);
System.out.println(count);
sqlSession.commit();
sqlSession.close();
}
int insertBatch(@Param("cars") Listcars);
insert into powernode values
(
null,#{car.carNum},#{car.brand},
#{car.guidePrice},#{car.produceTime},#{car.carType}
)
public void testInsertBatch(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
Car car1 = new Car(null,"1000","雪弗莱",10.0,"2021-11-11","燃油车");
Car car2 = new Car(null,"1001","雪弗莱",10.0,"2021-11-11","燃油车");
Car car3 = new Car(null,"1002","雪弗莱",10.0,"2021-11-11","燃油车");
Listcars = new ArrayList<>();
cars.add(car1);
cars.add(car2);
cars.add(car3);
mapper.insertBatch(cars);
sqlSession.commit();
sqlSession.close();
}
数据表:这两张表存在多对一和一对一的关系
多对一:多个学生对应一个班级
一对多:一个班级对应多个学生
那在两种关系中怎样分那个是主表呢?
那个在前那个就是:多对一:多在前,学生表是主表
一对多:一在前半集是主表
学生表
班级表
首先我们先构建学生实体类和班级实体类
由于多个学生对应一个班级,那么学生类中应该有Clazz 的属性字段
一个班级对应多个学生那么班级类中应该有学生类的集合
多对一实现有三种方式:
- 级联属性映射
- association
- 分布查询(常用)
需求:
根据id获取学生信息,同时获取学生关联的班级信息
Student selectById(Integer id);
public void testSelectById(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
Student student = mapper.selectById(3);
System.out.println(student);
sqlSession.close();
}
Student selectByIdAssociation(Integer id);
association :翻译为关联,一个Student对象关联一个Clazz对象 property:提供要要映射的pojo类的属性 javaType:用来zhiding要映射的Java类型
public void testSelectByIdAssociation(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
Student student = mapper.selectByIdAssociation(3);
System.out.println(student);
sqlSession.close();
分布查询优点:复用性强可以重复利用 就比如下边的可以只获取学生表信息 也可以只获取班级表信息 也可以将两张表连接起来获取信息 分布查询可以充分利用他们的延迟加载/懒加载机制 延迟加载的核心:用的时候在查询不用的时候不查询 作用:提高性能。尽可能的不查或少查提高效率就下面的来说 我不需要第二部通过cid获取班级信息时我就不会执行这部分语句 如果我没事用关键字开启延迟加载 那么不管你巡捕不需要获取班级变信息时 他都会查询 怎样开启延迟加载 association标签中添加fetchType="lazy" 但我们在现实开发中一般不用这种方式,因为他是局部的只针对当前association关联的sql语句起作用。 我们需要在config。xml配置setting来开启,这种是开启全局的那么如果我有一部分要求不不不使用延迟加载怎么办 我们可以让fetchType="eager" 这样与当前association关联的sql语句就不会有延迟加载
第一步:根据学生id查询学生信息
第二步:根据班级编号获取班级信息
延迟加载的全局开关
StudentMapper接口
Student selectByIdStep1(Integer sid);
ClazzMapper接口
Clazz selectByStep1(Integer cid);
StudentMapper.xml
ClazzMapper.xml
public void testSelectByIdStep1(){
SqlSession sqlSession = SqlSessionUtil.openSession();
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
Student student = mapper.selectByIdStep1(5);
// System.out.println(student);
System.out.println(student.getSname());
// System.out.println(student.getClazz().getCname());
sqlSession.close();
}
通常是在一方中有list集合
根据班级编号查询班级信息
Clazz selectByCollection(Integer cid);
跟多对一中 association用法相似值哦是这里使用的是collection关键字
public void testSelectByCollection(){
SqlSession sqlSession = SqlSessionUtil.openSession();
ClazzMapper mapper = sqlSession.getMapper(ClazzMapper.class);
Clazz clazz = mapper.selectByCollection(1000);
System.out.println(clazz);
sqlSession.close();
}
第一步:根据班级编号获取班级信息。
第二部:根据班级编号查询学生信息
ClazzMapper。java
Clazz selectByStep1(Integer cid);
StudentMapper。java
List selectByCidStep2(Integer cid);
ClazzMapper。xml
StudentMapper。xml
@Test
public void testSelectByStep1(){
SqlSession sqlSession = SqlSessionUtil.openSession();
ClazzMapper mapper = sqlSession.getMapper(ClazzMapper.class);
Clazz clazz = mapper.selectByStep1(1000);
//System.out.println(clazz);
// 只访问班级名字。
System.out.println(clazz.getCname());
// 只有用到的时候才会去执行第二步SQL
//System.out.println(clazz.getStus());
sqlSession.close();
}
一般我们从磁盘上取数据,需要一定的时间。但如果我们取加载过一次的数据,将他第一次加载后放入jvm内存中,第二次直接从内存中去会快很多,这个在jvm内存放加载数据的过程就叫缓存。
mybatis缓存:将那个select语句查询结果放入内存中,下一次还是这条select语句的话,直接从缓存好的数据中取,不再查数据库提高效率。
mybatis缓存有
一级缓存:默认开启,不需要任何配置
二级缓存满足条件
第三方缓存EhCache
按照以下步骤来即可
正向指:Java连接数据库
逆向:根据数据库表生成pojo类sqlMapper.xml文件 一节Mapper接口文件
具体做法:借助插件
首先要明白:插件是别人写好的,别人写的时候不会知道你的数据库信息,所以要提供以下数据
具体配置,按照步骤来即可
添加插件
org.mybatis.generator
mybatis-generator-maven-plugin
1.4.1
true
mysql
mysql-connector-java
8.0.30
配置generatorConfig.xml
这个文件只能放在跟路径resources下,且名字固定
根据里面的提示信息配置自己的数据库和包名等
运行插件
插件成功后,生成CarMapper.xml CarMapper.java 以及pojo下的实体类
其他的类还是需要自己创建,这个只能运行简单的增删改查
在数据库中我们使用limit关键字进行分页
limit(startIndex,pageSize)
startIndex:起始下标,默认为0
pageSize:每页显示的记录条数
假设已知pageNum页码和pageSizebiankeyou以下公式
startIndex=(pageNum-1)*pageSize
那么mybatis怎么分页呢
借助插件PageHelper
通过代码我们一起看一下具体使用方法
首先先把项目大架子搭起来(创建好包和配置文件)
第一步:引入依赖
com.github.pagehelper
pagehelper
5.1.10
第二步:在mybatis-config.xml中配置以下属性,注意
第三步:写CarMapper.xml
有没有好奇,这里没有使用分页关键字怎么做到分页,关键来了测试文件
@Test
public void testSelectAll(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
// 显示第几页:页码
int pageNum = 2;
// 获取每页显示的记录条数
int pageSize = 3;
PageHelper.startPage(pageNum, pageSize);
List cars = mapper.selectAll();
//cars.forEach(car -> System.out.println(car));
PageInfo carPageInfo = new PageInfo<>(cars,3);
System.out.println(carPageInfo);
sqlSession.close();
/** *PageInfo对象信息 pageNum:页码 pageSize:没页条数 size:结果数 startRow:开始下标 endRow:结束下标 total:数据库表总条数 pages:共几页 * PageInfo{pageNum=2, pageSize=3, size=3, startRow=4, endRow=6, total=9, pages=3, * list=Page{count=true, pageNum=2, pageSize=3, startRow=3, endRow=6, total=9, pages=3, * reasonable=false, pageSizeZero=false} * Car{id=9, carNum='0002', brand='凯美瑞', guidePrice=3.0, produceTime='2020-02-02', carType='新能源'}, * Car{id=12, carNum='1111', brand='大众', guidePrice=50.0, produceTime='2022-09-09', carType='燃油车'}, * Car{id=19, carNum='1000', brand='雪弗莱', guidePrice=10.0, produceTime='2021-11-11', carType='燃油车'}], * prePage=1, nextPage=3, isFirstPage=false, isLastPage=false, hasPreviousPage=true, hasNextPage=true, navigatePages=3, navigateFirstPage=1, navigateLastPage=3, navigatepageNums=[1, 2, 3]} */
注解可以简化我们的代码,但是并不是注解永远是最好的,简单的单表增删改查可以使用注解,这样省去了写配置文件sqlMapper.xml文件。但是复杂的语句会让本就复杂的sql语句更加混乱不堪
使用方法:在定义的接口方法上加注解并加上SQL语句,详细看代码
@Delete
@Delete("delete from powernode where id=#{id}")
int deleteById(Long id);
public void testDeleteById(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
int count = mapper.deleteById(7L);
System.out.println(count);
sqlSession.commit();
sqlSession.close();
}
@Insert
@Insert("insert into powernode values(null,#{carNum}," +
"#{brand},#{guidePrice},#{produceTime},#{carType})")
int insert(Car car);ar);
@Test
public void testInsert(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
Car car = new Car(null,"6666","丰田霸道",32.0,"2020-11-11","燃油车");
int count = mapper.insert(car);
System.out.println(count);
sqlSession.commit();
sqlSession.close();
}
@Update
@Test
public void testUpdate(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
Car car = new Car(12L,"6666","丰田霸道",32.0,"2020-11-11","燃油车");
int count = mapper.update(car);
System.out.println(count);
sqlSession.commit();
sqlSession.close();}
@Update("update powernode set car_num=#{carNum}," +
"brand=#{brand},guide_price=#{guidePrice}," +
"produce_time=#{produceTime}," +
"car_type=#{carType} where id=#{id}")
int update(Car car);
@Select
@Select("select * from powernode where id = #{id}")
// Results当你没有配置驼峰命名时加上他 建议开启驼峰
@Results({
@Result(property = "id", column = "id"),
@Result(property = "carNum", column = "car_num"),
@Result(property = "brand", column = "brand"),
@Result(property = "guidePrice", column = "guide_price"),
@Result(property = "produceTime", column = "produce_time"),
@Result(property = "carType", column = "car_type")
})
Car select (Long id);
@Test
public void testSelect(){
SqlSession sqlSession = SqlSessionUtil.openSession();
CarMapper mapper = sqlSession.getMapper(CarMapper.class);
Car car = mapper.select(12L);
System.out.println(car);
sqlSession.close();
}