MyBatisPlus代码生成器

代码生成器
AutoGenerator 是 MyBatis-Plus 的代码生成器,通过 AutoGenerator 可以快速生成 Entity、Mapper、Mapper XML、Service、Controller 等各个模块的代码,极大的提升了开发效率。
环境准备
创建一个employee表
SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS employee;
CREATE TABLE employee (
id bigint(20) NOT NULL COMMENT 'ID',
name varchar(255) DEFAULT NULL COMMENT '用户名',
gender varchar(255) DEFAULT NULL COMMENT '性别',
version int(10) DEFAULT '1' COMMENT '乐观锁',
deleted int(1) DEFAULT '0' COMMENT '逻辑删除',
create_time timestamp NULL DEFAULT NULL COMMENT '创建时间',
update_time timestamp NULL DEFAULT NULL COMMENT '更新时间',
PRIMARY KEY (id)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

复制代码

创建一个SpringBoot项目。配置Swagger,数据库驱动,MyBatisPlus,Web,lombok依赖。
代码生成器需要添加一下依赖

完整的pom.xml依赖代码

    
        
        io.springfox
        springfox-swagger2
        2.9.2
        
            
                io.swagger
                swagger-annotations
            
            
                io.swagger
                swagger-models
            
        
    
    
    
        io.swagger
        swagger-annotations
        1.5.21
    
    
        io.swagger
        swagger-models
        1.5.21
    
    
    
        io.springfox
        springfox-swagger-ui
        2.9.2
    
    
    
        com.baomidou
        mybatis-plus-generator
        3.0.5
    
    
        org.apache.velocity
        velocity-engine-core
        2.0
    
    
    
        mysql
        mysql-connector-java
    
    
    
        org.projectlombok
        lombok
    
    
    
        com.baomidou
        mybatis-plus-boot-starter
        3.0.5
    
    
        org.springframework.boot
        spring-boot-starter-web
    
    
        org.springframework.boot
        spring-boot-starter-test
        test
        
            
                org.junit.vintage
                junit-vintage-engine
            
        
    

复制代码
配置SpringBoot配置文件

配置数据库

spring.datasource.username=root
spring.datasource.password=kylin
spring.datasource.url=jdbc:mysql://localhost:3306/mybatis_plus?serverTimezone=GMT%2B8&useUnicode=true&characterEncoding=utf-8
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

配置日志 控制台输出

mybatis-plus.configuration.log-impl=org.apache.ibatis.logging.stdout.StdOutImpl

配置逻辑删除 默认为0 逻辑删除后为1

mybatis-plus.global-config.db-config.logic-delete-value=1
mybatis-plus.global-config.db-config.logic-not-delete-value=0

设置开发环境

spring.profiles.active=dev

关闭MybatisPlus的驼峰命名

mybatis-plus.configuration.map-underscore-to-camel-case=false

复制代码
由于测试中要使用MyBatisPlus的乐观锁,Sql性能分析,自动填充功能,填充策略。所以我们要配置MyBatisPlus的配置类,和处理器。详情见博客的MyBatis-Plus的CRUD及其扩展文章。同时还使用Swagger,所以也要配置Swagger配置类。详情见博客文章SpringBoot集成Swagger

{% note success %}
MybatisPlusConfig
{% endnote %}
//@MapperScan("com.kylin.mapper")//扫描mapper文件夹
@EnableTransactionManagement//自动管理事务
@Configuration//配置类
public class MybatisPlusConfig {

//注册乐观锁插件
@Bean
public OptimisticLockerInterceptor optimisticLockerInterceptor() {
    return new OptimisticLockerInterceptor();
}

//注册分页插件
@Bean
public PaginationInterceptor paginationInterceptor() {
    return new PaginationInterceptor();
}

//逻辑删除组件
@Bean
public ISqlInjector sqlInjector() {
    return new LogicSqlInjector();
}
//性能分析插件
@Bean
@Profile({"dev","test"})// 设置 dev test 环境开启,保证我们的效率
public PerformanceInterceptor performanceInterceptor() {
    PerformanceInterceptor performanceInterceptor = new PerformanceInterceptor();
    performanceInterceptor.setMaxTime(100);//运行时间超过1毫秒,就不执行。
    //performanceInterceptor.setFormat(true);//是否格式化代码
    return performanceInterceptor;
}

}
复制代码
{% note success %}
MyMetaObjectHandler
{% endnote %}

@Slf4j
@Component//一定不要忘记把处理器添加到Spring的IOC容器中
public class MyMetaObjectHandler implements MetaObjectHandler {

//插入时的填充策略
@Override
public void insertFill(MetaObject metaObject) {
    //其中方法参数中第一个是前面自动填充所对应的字段,第二个是要自动填充的值。第三个是指定实体类的对象
    log.info("start insert fill.....");
    this.setFieldValByName("createTime",new Date(),metaObject);//插入数据时给createTime插入一个时间
    this.setFieldValByName("updateTime",new Date(),metaObject);
}

//更新时的填充策略
@Override
public void updateFill(MetaObject metaObject) {
    this.setFieldValByName("updateTime",new Date(),metaObject);//更新数据时给updateTime插入一个时间
}

}
复制代码
{% note success %}
SwaggerConfig
{% endnote %}
@Configuration//配置类
@EnableSwagger2//开启swagger2
public class SwaggerConfig {

//配置了Swagger的Docket的bean实例
@Bean
public Docket docket(Environment environment) {
    //设置要显示的Swagger环境
    Profiles profiles = Profiles.of("dev", "test");
    //通过environment.acceptProfiles判断是否处在自己设定的环境中
    boolean flag = environment.acceptsProfiles(profiles);
    System.out.println(flag);
    return new Docket(DocumentationType.SWAGGER_2)
            .apiInfo(apiInfo())
            //enable:是否启动swagger 为false 不能浏览器中访问
            .enable(flag)
            .groupName("Kylin")
            .select()
            //RequestHandlerSelectors 配置要扫描接口的方式
            //basePackage():指定要扫描的包
            //any():扫描全部
            //none():不扫描
            //withClassAnnotation():扫描类上的注解 参数是一个注解的反射对象
            //withMethodAnnotation():扫描方法上的注解
            .apis(RequestHandlerSelectors.basePackage("com.kylin.controller"))
            //paths()过滤什么路径
            //.paths(PathSelectors.ant("/kylin/**"))
            .build();
}

//配置Swagger信息 apiInfo
private ApiInfo apiInfo() {
    Contact contact = new Contact("Kylin", "https://www.kylin.show", "[email protected]");
    return new ApiInfo(
            "Kylin的SwaggerAPI文档",//标题
            "学习不易,努力努力~",//描述
            "v1.0",//版本
            "https://www.kylin.show",//组织链接
            contact,//联系人信息
            "Apache 2.0",//许可
            "http://www.apache.org/licenses/LINCENSE-2.0",//许可链接
            new ArrayList());
}

}
复制代码
到此为之环境搭建完成!

你可能感兴趣的:(MyBatisPlus代码生成器)