MyBatisPlus⼊门使⽤详细教程
⼀、MyBatis Plus 介绍
MyBatis Plus 是国内⼈员开发的 MyBatis 增强⼯具,在 MyBatis 的基础上只做增强不做改变,为简化开发、提⾼效率⽽⽣。MyBatis Plus 的核⼼功能有:⽀持通⽤的 CRUD、代码⽣成器与条件构造器。
通⽤ CRUD:定义好 Mapper 接⼝后,只需要继承BaseMapper<T>接⼝即可获得通⽤的增删改查功能,⽆需编写任何接⼝⽅法与配置⽂件条件构造器:通过EntityWrapper<T>(实体包装类),可以⽤于拼接 SQL 语句,并且⽀持排序、分组查询等复杂的SQL代码⽣成器:⽀持⼀系列的策略配置与全局配置,⽐ MyBatis 的代码⽣成更好⽤
BaseMapper<T>接⼝中通⽤的 CRUD ⽅法:
⼆、MyBatis Plus 集成 Spring
数据表结构
DROP TABLE IF EXISTS `tbl_employee`;
CREATE TABLE `tbl_employee` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`last_name` varchar(50) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
`gender` char(1) DEFAULT NULL,
`age` int(11) DEFAULT NULL,
distribute intoPRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
pom⽂件
<dependencies>
<!-- MP -->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus</artifactId>
<version>2.3</version>
</dependency>
<!-- 测试 -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<!-- 数据源 -->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.10</version>
</dependency>
<!-- 数据库驱动 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.39</version>
</dependency>
<!-- Spring 相关 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>4.3.9.RELEASE</version>
</dependency>
documents app<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>4.3.9.RELEASE</version>
</dependency>
</dependencies>
MyBatis 全局配置⽂件l
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-////DTD Config 3.0//EN"
"/dtd/mybatis-3-config.dtd">
<!-- 不作任何配置 -->
<configuration />
yx75230690压型钢板
数据源db.properties
jdbc.url=jdbc:mysql://localhost:3306/mp
互站上的源码哪里的jdbc.username=root
jdbc.password=1234
Spring 配置⽂件l
<!-- 数据源 -->
<context:property-placeholder location="classpath:db.properties"/>
<bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
<property name="url" value="${jdbc.url}"></property>
<property name="username" value="${jdbc.username}"></property>
<property name="password" value="${jdbc.password}"></property>
</bean>
<!-- MP 提供的 MybatisSqlSessionFactoryBean -->
<bean id="sqlSessionFactoryBean"
class="batisplus.spring.MybatisSqlSessionFactoryBean">
<!-- 数据源 -->
<property name="dataSource" ref="dataSource"></property>
<!-- mybatis 全局配置⽂件 -->
<property name="configLocation" value="l"></property>
<!-- 别名处理 -->
<property name="typeAliasesPackage" value="com.jas.bean"></property>
<!-- 注⼊全局MP策略配置 -->
springboot免费教程视频
<property name="globalConfig" ref="globalConfiguration"></property>
<!-- 插件注册 -->
<property name="plugins">
<list>
<!-- 注册分页插件 -->
<bean class="batisplus.plugins.PaginationInterceptor" />
<!-- 注⼊ SQL 性能分析插件,建议在开发环境中使⽤,可以在控制台查看 SQL 执⾏⽇志 -->  <bean class="batisplus.plugins.PerformanceInterceptor">
<property name="maxTime" value="1000" />
<!--SQL 是否格式化默认false-->
<property name="format" value="true" />
</bean>
</list>
</property>
</bean>
<!-- 定义 MybatisPlus 的全局策略配置-->
<bean id ="globalConfiguration" class="ity.GlobalConfiguration"> <!-- 在 2.3 版本以后,dbColumnUnderline 默认值是 true -->
<property name="dbColumnUnderline" value="true"></property>
<!-- 全局的主键策略 -->
<property name="idType" value="0"></property>
<!-- 全局的表前缀策略配置 -->
<property name="tablePrefix" value="tbl_"></property>
</bean>
<!-- 配置mybatis 扫描mapper接⼝的路径 -->
<bean class="batis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="com.jas.mapper"></property>
</bean>
三、快速体验 MyBatis Plus
实体类Employee
@TableName(value = "tbl_employee")
public class Employee {
@TableId(value = "id", type = IdType.AUTO)
private Integer id;
@TableField(value = "last_name")
private String lastName;
private String email;
private Integer gender;
private Integer age;
public Employee() {
super();
}
public Employee(Integer id, String lastName, String email, Integer gender, Integer age) {
this.id = id;
this.lastName = lastName;
this.age = age;
}
// 省略 set、get 与 toString() ⽅法
mapper 接⼝
/**
* 不定义任何接⼝⽅法
*/
public interface EmployeeMapper extends BaseMapper<Employee> {}
在测试类中⽣成测试的 mapper 对象
private ApplicationContext context =
new ClassPathXmlApplicationContext("l");
private EmployeeMapper employeeMapper =
简单查询测试
@Test
public void getEmpByIdTest() {
Employee employee = employeeMapper.selectById(1);
System.out.println(employee);
}
分页查询测试
@Test
public void getEmpByPage() {
Page<?> page = new Page<>(1, 5);
List<Employee> list = employeeMapper.selectPage(page, null);
System.out.println("总记录数:" + Total());
System.out.println("总页数" + Pages());
System.out.println(list);
}
条件构造器测试
@Test
public void getEmpByName() {
EntityWrapper<Employee> wrapper = new EntityWrapper<>();
/
/ 'last_name' 与 'age' 对应数据库中的字段
wrapper.like("last_name", "张");
wrapper.eq("age", 20);
mysql入门基础教程List<Employee> list = employeeMapper.selectList(wrapper);
System.out.println(list);
}
控制台输出的 SQL 分析⽇志
上⾯⼏个例⼦中,并没有在EmployeeMapper接⼝中定义任何⽅法,也没有在配置⽂件中编写 SQL 语句,⽽是通过继承BaseMapper<T>接⼝获得通⽤的的增删改查⽅法,复杂的 SQL 也可以使⽤条件构造器拼接。
通过这两种⽅式已经能够满⾜很多的开发需求了,不过复杂的业务需求还是要编写 SQL 语句的,流程和 MyBatis ⼀样。PS:
完整的代码(mybatis-plus-demo⽬录)传到了 GitHub,包括 SQL 表结构与数据⽂件,
总结

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。