Mybatis-Plus3.x的创建步骤及使用教程
MyBatis-Plus(简称 MP)是一个 MyBatis 的增强工具,在 MyBatis 的基础上只做增强不做改变,为 简化开发、提高效率而生。
一、引入
创建步骤:
1.创建Spring Boot工程
2.添加依赖
引入 Spring Boot Starter 父工程:
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.7.RELEASE</version> <relativePath/> </parent>
引入相关其他依赖
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>2.1.3</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency> <!--lombok--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency>
mybatis-plus相关依赖
<dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</artifactId> <version>3.4.0</version> </dependency> <!-- 引入mysql依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-jdbc</artifactId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> </dependency>
配置application.yml:
添加mysql相关配置
mybatis-plus: type-aliases-package: com.hz.entity #类型别名所在的包 #控制台打印sql语句 configuration: log-impl: org.apache.ibatis.logging.stdout.StdOutImpl map-underscore-to-camel-case: false #驼峰映射 global-config: db-config: logic-delete-field: delFlag #全局逻辑删除字段值 3.3.0开始支持,详情看下面。 logic-delete-value: 1 #逻辑已删除值(默认为 1) logic-not-delete-value: 0 #逻辑未删除值(默认为 0) #数据库链接 spring: datasource: url: jdbc:mysql://127.0.0.1:3306/demo?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=UTC username: root driver-class-name: com.mysql.cj.jdbc.Driver password: 123456 #静态资源 resources: static-locations: classpath:/templates,classpath:/static/
在 Spring Boot 启动类中添加 @MapperScan 注解
编码:
在mapper类中继承Basemapper
测试:
注意:
1.数据库字段若为驼峰命名,则需要开启
mybatis-plus:configuration:map-underscoreto-camel-case: false #驼峰映射
2. UserMapper 中的 selectList() 方法的参数为 MP 内置的条件封装器 Wrapper ,所以 不填写就是无任何条件
3.若需要自定义DAO接口,则需要在yml中读取mapper文件,
mybatis-plus:mapperlocations: classpath:mappers/*.xml
二、通用crud接口
CRUD是指在做计算处理时的增加(Create)、检索(Retrieve)、更新(Update)和删除(Delete)几个单词的首字母简写。CRUD主要被用在描述软件系统中数据库或者持久层的基本操作功能。
service层
如 UserService 用户业务接口有自定义的方法,可创建 UserService 并继承 IService ,接口实现类 UserServiceImpl 可继承 ServiceImpl<BaseMapper<t>, T> ,实现 UserService 接口并 实现接口定义方法。具体代码如下:
继承 IService 接口
三、分页插件:
1.分页插件
配置插件
//Spring boot方式 @EnableTransactionManagement @Configuration public class MybatisPlusConfig { /** * 分页插件定义 * @return */ @Bean public PaginationInterceptor paginationInterceptor() { PaginationInterceptor paginationInterceptor = new PaginationInterceptor(); // 设置请求的页面大于最大页后操作, true调回到首页,false 继续请求 默认false // paginationInterceptor.setOverflow(false); // 设置最大单页限制数量,默认 500 条,-1 不受限制 // paginationInterceptor.setLimit(500); return paginationInterceptor; } }
使用分页查询
@Test public void testPageList() { Page<User> page = new Page<User>(1, 2); userMapper.selectPage(page, null); // 输出page对象分页查询信息 System.out.println("总条数:" + page.getTotal()); System.out.println("每页显示条数:" + page.getSize()); System.out.println("总页数:" + page.getPages()); System.out.println("当前页:" + page.getCurrent()); System.out.println("是否有上一页:" + page.hasPrevious()); System.out.println("是否有下一页:" + page.hasNext()); System.out.println("查询结果:" + page.getRecords()); }
四、逻辑删除
1. application.yml 加入配置(如果你的默认值和mp默认的一样,该配置可无):
#以下为mybatis-plus配置 mybatis-plus: global-config: db-config: logic-delete-field: flag #全局逻辑删除字段值 3.3.0开始支持,详情看下面。 logic-delete-value: 1 # 逻辑已删除值(默认为 1) logic-not-delete-value: 0 # 逻辑未删除值(默认为 0)
3. 在数据库中加入逻辑删除的字段,并且对应实体类中,该映射字段需要加入注解 @TableLogic
@Data @TableName(value = "user") // 对应数据库表名 public class User { ......省略 /** * 逻辑删除字段 */ @TableField(value="delete_flag") @TableLogic private Integer deleteFlag; }
到此这篇关于Mybatis-Plus3.x的使用的文章就介绍到这了,更多相关Mybatis-Plus3.x使用内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
浅析Java中Apache BeanUtils和Spring BeanUtils的用法
这篇文章主要介绍了Java中Apache BeanUtils和Spring BeanUtils的用法,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-11-11
最新评论