学习视频链接:狂神说Java
一、简介
1、 启动会自动注入基本的CRUD,性能基本无损耗,直接面向对象操作。 2、内通用的Mapper、Service,仅通过少量的配置就可以实现单表大部分的CRUD操作,有条件构造器来满足各类的使用需求 3、内置代码生成器,采用代码或者maven插件快速生成mapper、model、service、controller层代码。 4、内置分页插件 5、内置全局拦截插件
使用第三方组件: 1、导入对应的依赖 2、配置 3、代码的编写
二、基本操作的使用
1、创建新的工程 2、导入对应的坐标依赖
<!--数据库驱动,基本的连接驱动-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!--lombok-->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<!--mybatis-plus-->
<!--mybatis-plus是自己开发的,并非官方的。尽量不要同事导入mybatis和mybatis-plus,会存在版本问题-->
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.0.5</version>
</dependency>
3、配置application.yml mysql8 驱动不同 com.mysql.jdbc.Driver 需要增加时区的配置 serverTime=GMT%2B8
spring:
datasource:
username: root
password: 123456
driver-class-name: com.mysql.cj.jdbc.Driver
url: jdbc:mysql://localhost:3306/mybatis_pplus?useUnicode=true&characterEncoding=utf8
4、创建实体类
package com.tiki.entity;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class User {
private Long id;
private String name;
private Integer age;
private String email;
}
5、创建mapper接口
package com.tiki.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.tiki.entity.User;
@Repository
public interface UserMapper extends BaseMapper<User> {
}
6、在启动类上配置需要扫描的类
package com.tiki;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@MapperScan("com.tiki.mapper")
@SpringBootApplication
public class MybatisPlusApplication {
public static void main(String[] args) {
SpringApplication.run(MybatisPlusApplication.class, args);
}
}
7、测试
package com.tiki;
import com.tiki.entity.User;
import com.tiki.mapper.UserMapper;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import java.util.List;
@SpringBootTest
class MybatisPlusApplicationTests {
@Autowired
private UserMapper userMapper;
@Test
void contextLoads() {
List<User> users = userMapper.selectList(null);
users.forEach(System.out::println);
}
}
配置日志
由于所有的sql语句现在是不可见的,锁客可以通过日志的方法查看它是怎么执行的
在控制台输出
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
CRUD
1、插入操作
@Test
public void testInsert(){
User user = new User();
user.setName("小明");
user.setAge(3);
user.setEmail("123456@123.com");
int result=userMapper.insert(user);
System.out.println(result);
System.out.println(user);
}
主键自增: 1、在实体类的字段上增加注解 @TableId(type=IdType.AUTO) 2、数据库的字段对应也需要设置成自增
public enum IdType {
AUTO(0),
NONE(1),
INPUT(2),
ID_WORKER(3),
UUID(4),
ID_WORKER_STR(5);
2、更新操作
@Test
public void testUpdate(){
User user = new User();
user.setId(1568498212239384580L);
user.setName("更新小明");
user.setAge(3);
user.setEmail("123456@123.com");
int i = userMapper.updateById(user);
System.out.println(i);
}
自动填充 创建时间、修改时间,这些操作都需要自动化完成。 方式一:数据库级别 1、在表中新增字段 create_time、update_time 2、同步更新实体类
private Date createTime;
private Date updateTime;
3、再次更新操作
public void testUpdate(){
User user = new User();
user.setId(1568498212239384580L);
user.setName("更新小明");
user.setAge(19);
user.setEmail("123456@123.com");
int i = userMapper.updateById(user);
System.out.println(i);
}
方式二:代码级别 1、删除数据库的默认值 2、实体类字段属性上需要增加注解
@TableField(fill = FieldFill.INSERT)
private Date createTime;
@TableField(fill = FieldFill.INSERT_UPDATE)
private Date updateTime;
3、编写处理器来处理该注解
package com.tiki.handler;
import com.baomidou.mybatisplus.core.handlers.MetaObjectHandler;
import lombok.extern.slf4j.Slf4j;
import org.apache.ibatis.reflection.MetaObject;
import org.springframework.stereotype.Component;
import java.util.Date;
@Slf4j
@Component
public class MyMetaObjectHandler implements MetaObjectHandler {
@Override
public void insertFill(MetaObject metaObject) {
log.info("start insert fill...");
this.setFieldValByName("createTime",new Date(),metaObject);
this.setFieldValByName("updateTime",new Date(),metaObject);
}
@Override
public void updateFill(MetaObject metaObject) {
log.info("start uodate fill...");
this.setFieldValByName("updateTime",new Date(),metaObject);
}
}
乐观锁 乐观锁:总是认为不会出现问题,无论干什么都不加锁,如果出现了问题,再次更新值测试。 悲观锁:总是认为出现问题,无论干什么都会上锁!再去操作!
乐观锁的实现方式: 1、取出记录时,获取当前的version 2、更新时,带上这个version 3、执行更新时,set version=newVersion shere version=oldVersion 4、如果version不对,就更新失败。 –A update user set name=“Aila”,version=version+1 where id=2 and version=1 –B线程B在A之前完成该操作,会使得此时的version已经变成2,A就会修改失败。 update user set name=“Aila”,version=version+1 where id=2 and version=1
实现步骤: 1、给数据库字段增加version字段 2、实体类添加对应的字段
@Version
private Integer version;
3、注册组件
package com.tiki.config;
import com.baomidou.mybatisplus.extension.plugins.OptimisticLockerInterceptor;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.transaction.annotation.EnableTransactionManagement;
@EnableTransactionManagement
@MapperScan("com.tiki.mapper")
@Configuration
public class MyBatisPlusConfig {
@Bean
public OptimisticLockerInterceptor optimisticLockerInterceptor(){
return new OptimisticLockerInterceptor();
}
}
4、测试
@Test
public void testOptimisticLocker(){
User user = userMapper.selectById(1L);
user.setName("Baddy");
user.setEmail("12456321@qq.com");
userMapper.updateById(user);
}
@Test
public void testOptimisticLocker2(){
User user = userMapper.selectById(1L);
user.setName("Baddy");
user.setEmail("12456321@qq.com");
User user2 = userMapper.selectById(1L);
user2.setName("Baddyyyyyyyyy");
user2.setEmail("12456321@qq.com");
userMapper.updateById(user2);
userMapper.updateById(user);
}
查询: 按照分页查询
@Test
public void testSelectByBatchIds(){
HashMap<String, Object> map = new HashMap<>();
map.put("name","TiKiL");
List<User> users=userMapper.selectByMap(map);
users.forEach(System.out::println);
}
分页查询: 1、配置拦截器组件
@Bean
public PaginationInterceptor paginationInterceptor(){
return new PaginationInterceptor();
}
2、直接使用Page对象即可
@Test
public void testPage(){
Page<User> page = new Page<>(1,5);
userMapper.selectPage(page,null);
page.getRecords().forEach(System.out::println);
System.out.println(page.getTotal());
}
删除操作 1、基本的删除操作
@Test
public void testDeleteById(){
userMapper.deleteById(1568498212239384580L);
}
@Test
public void testDeleteBatchId(){
userMapper.deleteBatchIds(Arrays.asList(1568498212239384580L,1568498212239384579L));
}
@Test
public void testDeleteMap(){
HashMap<String, Object> map = new HashMap<>();
map.put("name","小明");
userMapper.deleteByMap(map);
}
2、逻辑删除
物理删除:从数据库中直接移除 逻辑删除:数据库当中并没有实际删除数据,只是通过一个变量让该数据失效。(如:管理员可以查看被删除的数据!防止数据的丢失,类似于回收站) 1、在数据表中增加一个deleted字段 2、实体类中增加属性
@TableLogic
private Integer deleted;
3、配置(在config类中添加逻辑删除组件)
@Bean
public ISqlInjector sqlInjector(){
return new LogicSqlInjector();
}
application.yml中添加配置,配置逻辑删除【】
mybatis-plus:
configuration:
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
global-config:
db-config:
logic-delete-value: 1
logic-not-delete-value: 0
@Test
public void testDeleteById(){
userMapper.deleteById(3L);
}
本质做的是更新操作,并不是删除操作
性能分析插件
作用:性能分析拦截器,用于输出每条SQL语句及其执行时间 1、导入插件(在配置类中)
@Bean
@Profile({"dev","test"})
public PerformanceInterceptor performanceInterceptor(){
PerformanceInterceptor performanceInterceptor = new PerformanceInterceptor();
performanceInterceptor.setMaxTime(100);
performanceInterceptor.setFormat(true);
return performanceInterceptor;
}
在springboot的配置中(application.yml)开启dev/test环境的配置
spring:
profiles:
active: dev
2、测试使用
条件构造器–Wrapper
1、查询name不为空的用户,并且邮箱不为空的用户,年龄大于等于12
@Test
void contextLoads(){
QueryWrapper<User>wrapper=new QueryWrapper<>();
wrapper.isNotNull("name")
.isNotNull("email")
.ge("age",12);
userMapper.selectList(wrapper).forEach(System.out::println);
}
2、 查询名字为TiKi
@Test
void test2(){
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper.eq("name","TiKi");
User user = userMapper.selectOne(wrapper);
System.out.println(user);
}
3、查询年龄在20~30岁之间的用户
@Test
void test3(){
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper.between("age",20,30);
Integer count=userMapper.selectCount(wrapper);
System.out.println(count);
}
4、模糊查询
@Test
void test4(){
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper
.notLike("name","e")
.likeRight("email","t");
List<Map<String, Object>> maps = userMapper.selectMaps(wrapper);
maps.forEach(System.out::println);
}
5、
@Test
void test5(){
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper.inSql("id","select id from user where id<3");
List<Object> objects = userMapper.selectObjs(wrapper);
objects.forEach(System.out::println);
}
6、排序
@Test
void test6(){
QueryWrapper<User> wrapper = new QueryWrapper<>();
wrapper.orderByDesc("id");
List<User> users = userMapper.selectList(wrapper);
users.forEach(System.out::println);
}
代码生成器
package com.tiki;
import com.baomidou.mybatisplus.annotation.DbType;
import com.baomidou.mybatisplus.annotation.FieldFill;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.generator.AutoGenerator;
import com.baomidou.mybatisplus.generator.config.DataSourceConfig;
import com.baomidou.mybatisplus.generator.config.GlobalConfig;
import com.baomidou.mybatisplus.generator.config.PackageConfig;
import com.baomidou.mybatisplus.generator.config.StrategyConfig;
import com.baomidou.mybatisplus.generator.config.po.TableFill;
import com.baomidou.mybatisplus.generator.config.rules.DateType;
import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;
import java.util.ArrayList;
public class TiKicode {
public static void main(String[] args) {
AutoGenerator mpg = new AutoGenerator();
GlobalConfig gc = new GlobalConfig();
String projectPath = System.getProperty("user.dir");
gc.setOutputDir(projectPath+"/src/main/java");
gc.setAuthor("TiKi");
gc.setOpen(false);
gc.setFileOverride(false);
gc.setServiceName("%sService");
gc.setIdType(IdType.ID_WORKER);
gc.setDateType(DateType.ONLY_DATE);
gc.setSwagger2(true);
mpg.setGlobalConfig(gc);
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl("jdbc:mysql://localhost:3306/mybatis_pplus?useUnicode=true&characterEncoding=utf8");
dsc.setDriverName("com.mysql.cj.jdbc.Driver");
dsc.setUsername("root");
dsc.setPassword("123456");
dsc.setDbType(DbType.MYSQL);
mpg.setDataSource(dsc);
PackageConfig packageConfig = new PackageConfig();
packageConfig.setModuleName("blog");
packageConfig.setParent("com.TiKioo");
packageConfig.setEntity("entity");
packageConfig.setMapper("mapper");
packageConfig.setService("service");
packageConfig.setController("controller");
mpg.setPackageInfo(packageConfig);
StrategyConfig strategy = new StrategyConfig();
strategy.setInclude("user");
strategy.setNaming(NamingStrategy.underline_to_camel);
strategy.setColumnNaming(NamingStrategy.underline_to_camel);
strategy.setEntityLombokModel(true);
strategy.setRestControllerStyle(true);
strategy.setControllerMappingHyphenStyle(true);
strategy.setLogicDeleteFieldName("deleted");
TableFill gmtCreate = new TableFill("gmt_create", FieldFill.INSERT);
TableFill gmtMofified = new TableFill("gmt_mofified", FieldFill.INSERT_UPDATE);
ArrayList<TableFill> tableFills = new ArrayList<>();
tableFills.add(gmtCreate);
tableFills.add(gmtMofified);
strategy.setTableFillList(tableFills);
strategy.setVersionFieldName("version");
mpg.setStrategy(strategy);
mpg.execute();
}
}
|