大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
本文小编将基于 SpringBoot
整合 MyBatis-Plus
, MyBatis-Plus是一个 MyBatis 的增强工具,在 MyBatis 的基础上做增强并且不改变原本功能 ~
创新互联专注为客户提供全方位的互联网综合服务,包含不限于网站设计制作、网站设计、威宁网络推广、小程序定制开发、威宁网络营销、威宁企业策划、威宁品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们最大的嘉奖;创新互联为所有大学生创业者提供威宁建站搭建服务,24小时服务热线:028-86922220,官方网址:www.cdcxhl.com
pom.xml
中引入MyBatis-Plus
相关依赖下面直接贴出小编的整个文件内容以作参考,避免因为部分细节缺失导致错误
4.0.0
org.springframework.boot
spring-boot-starter-parent
2.1.8.RELEASE
com.zhengqing
demo
0.0.1-SNAPSHOT
demo
Demo project for Spring Boot
1.8
2.2.0
5.1.40
3.6
4.6.2
org.springframework.boot
spring-boot-starter-web
org.springframework.boot
spring-boot-starter-test
test
org.springframework.boot
spring-boot-starter-jdbc
com.baomidou
mybatis-plus-boot-starter
${mybatis-plus-boot-starter.version}
mysql
mysql-connector-java
${mysql.version}
com.alibaba
druid
1.0.18
org.projectlombok
lombok
true
cn.hutool
hutool-all
${hutool-all.version}
org.apache.commons
commons-lang3
${commons-lang3.version}
src/main/java
**/*.xml
false
src/main/resources
src/main/java
**/*.xml
false
org.springframework.boot
spring-boot-maven-plugin
这里主要配置分页插件 和 @MapperScan注解扫描 Mapper 文件夹
@EnableTransactionManagement
@Configuration
@MapperScan("com.zhengqing.demo.modules.**.mapper*") // 扫描 Mapper 文件夹 【注:根据自己的项目结构配置】
public class MybatisPlusConfig {
/**
* mybatis-plus分页插件
* 文档:https://mp.baomidou.com/guide/page.html
*/
@Bean
public PaginationInterceptor paginationInterceptor() {
return new PaginationInterceptor();
}
}
application.yml
中配置数据库以及mybatis-plus相关配置温馨小提示:注意修改自己的数据库连接配置信息哦~
# 配置端口
server:
port: 8080
servlet:
# context-path: /api
application-display-name: demo
spring:
application:
name: demo
profiles:
active: dev
# 配置数据源
datasource:
url: jdbc:mysql://127.0.0.1:3306/demo?allowMultiQueries=true&useUnicode=true&characterEncoding=UTF8&zeroDateTimeBehavior=convertToNull&useSSL=false # MySQL在高版本需要指明是否进行SSL连接 解决则加上 &useSSL=false
name: demo
username: root
password: root
# 使用druid数据源
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: com.mysql.jdbc.Driver
filters: stat
maxActive: 20
initialSize: 1
maxWait: 60000
minIdle: 1
timeBetweenEvictionRunsMillis: 60000
minEvictableIdleTimeMillis: 300000
validationQuery: select 'x'
testWhileIdle: true
testOnBorrow: false
testOnReturn: false
poolPreparedStatements: true
maxOpenPreparedStatements: 20
management:
security:
enabled: false
# mybatis-plus相关配置
mybatis-plus:
# xml扫描,多个目录用逗号或者分号分隔(告诉 Mapper 所对应的 XML 文件位置)
mapper-locations: classpath:**/*Mapper.xml
# 以下配置均有默认值,可以不设置
global-config:
#主键类型 0:"数据库ID自增", 1:"用户输入ID",2:"全局唯一ID (数字类型唯一ID)", 3:"全局唯一ID UUID";
id-type: 0
#字段策略 0:"忽略判断",1:"非 NULL 判断"),2:"非空判断"
field-strategy: 2
#驼峰下划线转换
db-column-underline: true
#刷新mapper 调试神器
refresh-mapper: false
#数据库大写下划线转换
#capital-mode: true
#序列接口实现类配置
#key-generator: com.baomidou.springboot.xxx
#逻辑删除配置
#logic-delete-value: 0 # 逻辑已删除值(默认为 1)
#logic-not-delete-value: 1 # 逻辑未删除值(默认为 0)
#自定义填充策略接口实现
# meta-object-handler: com.zhengqing.config.MyMetaObjectHandler
#自定义SQL注入器
#sql-injector: com.baomidou.springboot.xxx
configuration:
# 是否开启自动驼峰命名规则映射:从数据库列名到Java属性驼峰命名的类似映射
map-underscore-to-camel-case: true
cache-enabled: false
# 如果查询结果中包含空值的列,则 MyBatis 在映射的时候,不会映射这个字段
# call-setters-on-nulls: true
# 这个配置会将执行的sql打印出来,在开发或测试的时候可以用
# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
# 解决oracle更新数据为null时无法转换报错,mysql不会出现此情况
jdbc-type-for-null: 'null'
t_sys_user
用户表温馨小提示: 实体类继承MyBatis-Plus的
Model
类 +Mapper
类继承MyBatis-Plus的BaseMapper
类 -> 可支持ActiveRecord
动态语法调用
@Data
@TableName("t_sys_user")
public class User extends Model {
private static final long serialVersionUID = 1L;
/**
* 主键ID
*/
@TableId(value="id", type= IdType.AUTO)
private Integer id;
/**
* 账号
*/
@TableField("username")
private String username;
/**
* 登录密码
*/
@TableField("password")
private String password;
/**
* 昵称
*/
@TableField("nick_name")
private String nickName;
@Override
protected Serializable pkVal() {
return this.id;
}
}
public interface UserMapper extends BaseMapper { }
温馨小提示:以下CRUD均采用 ActiveRecord 动态语法
@RunWith(SpringRunner.class)
@SpringBootTest
public class ApplicationTests {
/**
* 新增数据
*/
@Test
public void testAdd() throws Exception{
User entity = new User();
entity.setUsername("admin");
entity.setPassword("123456");
entity.setNickName("管理员");
entity.insert();
}
/**
* 更新数据
*/
@Test
public void testUpdate() throws Exception{
User entity = new User();
entity.setId(1);
entity.setUsername("test");
entity.setPassword("123456");
entity.setNickName("测试号");
entity.updateById();
}
/**
* 删除数据
*/
@Test
public void testDelete() throws Exception{
User entity = new User();
entity.deleteById(1);
}
/**
* 查询指定id数据
*/
@Test
public void testSelectById() throws Exception{
User entity = new User();
User user = entity.selectById(1);
System.out.println(user);
}
/**
* 查询所有数据
*/
@Test
public void testSelectAll() throws Exception{
User entity = new User();
List list = entity.selectList(null);
System.out.println(list);
}
/**
* 查询所有数据 - 分页
*/
@Test
public void testSelectAllPage() throws Exception{
User entity = new User();
Page page = entity.selectPage(new Page(1, 10), null);
System.out.println(page);
}
}
这个案例就放文末demo源码吧,不多说,也就是自己写sql语句处理对应业务
总体来说相对简单,关于MyBatis-Plus更多的语法和功能可参考MyBatis-Plus官网文档
https://mp.baomidou.com/guide/crud-interface.html#mapper-crud-%E6%8E%A5%E5%8F%A3
整体项目结构:
https://gitee.com/zhengqingya/java-workspace