mybatis的前身 是 ibatis
看下 ibatis落幕介绍:
ibatis 2002年创建,2010年退役。
https://ibatis.apache.org/
mybatis中文网:
https://mybatis.net.cn/index.html
mybatis 使用一 JAVA+MyBatis
这种使用 mybatis的方式,是最原始的,简单的,不需要 spring体系。 在 java 代码中使用 mybatis就能够完成数据库的操作。java 即使不用mybatis 也可以使用 JDBC原生的api进行数据库操作。这里使用 mybatis,就是体现了 mybatis最初的目的。所以,不管现在技术变化有多大,也离不开底层原理。
1. config
mybatis-config-test.xml 这个配置文件,是用来配置数据源及mapper映射文件等
2. mapper
mapper-test.xml 这个配置文件,就是用来写 sql语句的
3. pom配置
pom.xml 主要配置 mysql 驱动 和 mybatis 包即可。
尽管现在 数据库层相关的 技术很多,而最底层的 技术 也就是这两。
mysql
mysql-connector-java
runtime
org.mybatis
mybatis
4. java代码使用
非常简单,获取 config配置,构建一个 工厂类,使用工厂类获取 一个 session,利用session进行sql语句的执行。
public static void main(String[] args) throws Exception{
InputStream resource = Resources.getResourceAsStream("mybatis-config-test.xml");
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(resource);
SqlSession sqlSession = sqlSessionFactory.openSession();
Object o = sqlSession.selectOne("db-test.selectDemo");
System.out.println(o);
}
mybatis使用二 Java + spring + mybatis
pom依赖:
重要 的是加上这个依赖
org.mybatis
mybatis-spring
spring 配置文件
spring-c.xml 管理的比较关键的 bean对象
mapperv1-test.xml
sql映射文件
添加一个操作接口
public interface DaoInterface {
public ZCourse selectDemo();
}
运行:
/**
* Java + Spring + Mybatis
*/
public class MyBatisTestV1 {
public static void main(String[] args) {
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("spring-c.xml");
Object dao = context.getBean("dao");
DaoInterface daoInterface = (DaoInterface) dao;
ZCourse zCourse = daoInterface.selectDemo();
System.out.println(zCourse);
}
}
上面是使用xml进行sql编写,也可以使用注解:
public interface DaoInterface {
public ZCourse selectDemo();
@Select("select * from z_course where id=1")
public ZCourse select();
}
mybatis使用三 spring boot 项目
pom文件加依赖:
org.mybatis.spring.boot
mybatis-spring-boot-starter
2.2.2
yml文件:
spring:
datasource:
url: jdbc:mysql://localhost:3306/wxjdb1
username: root
password:
driver-class-name: com.mysql.cj.jdbc.Driver
spring boot 项目使用数据源连接池的问题:
spring boot 项目默认的数据源连接池是: com.zaxxer.hikari.HikariDataSource
有时候我们在配置文件中可以看到指定数据源类型的配置:
spring:
datasource:
# type: com.alibaba.druid.pool.DruidDataSource
# type: com.zaxxer.hikari.HikariDataSource
这种配置好像并没有什么用。如果你的pom.xml中添加了依赖:
com.alibaba
druid-spring-boot-starter
1.1.22
就会使用 DruidDataSource连接池,如果没有这个依赖,会默认使用HikariDataSource。
因此,对于数据源连接池的选择和使用,spring boot已经为我们做好了。
mybatis 使用四 爆米豆插件
然而,人是懒惰的,即使开发方式已经便捷到这种地步,人们还是不愿意,于是有了一种技术,可以省略sql的编写。
pom
com.baomidou
mybatis-plus-boot-starter
3.3.0
dao层接口
接口继承 BaseMapper 并制定表对应的实体类
@Mapper
@Repository
public interface ZCourseMapper extends BaseMapper {
}
使用:
zCourseMapper.selectOne(new QueryWrapper().eq("id", "1"));
spring boot 多数据源配置
pom依赖
com.baomidou
dynamic-datasource-spring-boot-starter
3.1.0
第一种:
使用的是spring boot 自带的默认的 数据源连接池,HikariDataSource
pom.xml文件中不添加:
com.alibaba
druid-spring-boot-starter
1.1.22
yml配置多数据源:
spring:
datasource:
dynamic:
primary: wxjdb1
datasource:
wxjdb1:
url: jdbc:mysql://localhost:3306/wxjdb1
username: root
password:
driver-class-name: com.mysql.cj.jdbc.Driver
test:
url: jdbc:mysql://localhost:3306/test
username: root
password:
driver-class-name: com.mysql.cj.jdbc.Driver
第二种:
使用 DruidDataSource 作为数据源连接池
pom.xml 中加入依赖:
com.alibaba
druid-spring-boot-starter
1.1.22
yml配置:
#需要把druid自动配置类排除
com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
spring:
autoconfigure:
#需要把druid自动配置类排除
exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
datasource:
dynamic:
primary: wxjdb1
datasource:
wxjdb1:
url: jdbc:mysql://localhost:3306/wxjdb1
username: root
password:
driver-class-name: com.mysql.cj.jdbc.Driver
test:
url: jdbc:mysql://localhost:3306/test
username: root
password:
driver-class-name: com.mysql.cj.jdbc.Driver
使用:
注解:
/**
* The core Annotation to switch datasource. It can be annotate at class or method.
*
* @author TaoYu Kanyuxia
* @since 1.0.0
*/
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface DS {
/**
* groupName or specific database name or spring SPEL name.
*
* @return the database you want to switch
*/
String value();
}
使用上述注解,加载类或者方法上就就可以了。
1. 首先 正常编写功能
2. 再需要指定数据源的类或者方法上,加上 @DS("数据源名称")
第一种:加在方法上
@Mapper
@Repository
public interface ZCourseMapper extends BaseMapper {
@DS("test")
@Select("select * from z_course where id=1")
public ZCourse select();
}
第二中:加在类上
@DS("test")
@Service
public class DBService {
@Autowired
private ZCourseMapper zCourseMapper;
public void queryData(){
ZCourse zCourse = zCourseMapper.selectOne(new QueryWrapper().eq("id", "1"));
return;
}
}
分页工具
spring boot 分页工具的使用
pom.xml:
com.github.pagehelper
pagehelper-spring-boot-starter
1.2.12
yml配置:
pagehelper:
helperDialect: mysql
reasonable: true
supportMethodsArguments: true
params: count=countSql
代码:
/**
* 第一步: 分页查询 sql 执行之前 进行设置
* 页号、每页大小
*/
PageHelper.startPage(1,2);
/**
* 第二步: 设置好 分页参数后,紧接着需要执行 查询 sql
* 这里返回的数据,就是 需要查询的 目标数据
*/
List resultList = zCourseMapper.selectList(new QueryWrapper().ge("id", "1"));
/**
* 第三步: 将查询结果 包装返回
* pageInfo 对象 包含了分页用到的信息
*
*/
PageInfo pageInfo = new PageInfo<>(resultList);
以上简单介绍了 mybatis 一步步递进式的使用方式,包括 常用的 一些方法。了解之后,对于提高开发效率还是很有帮助的。对于其中的实现细节、原理等没有做深入研究。