Mybatis-Plus代码生成配置

import com.baomidou.mybatisplus.generator.AutoGenerator;
import com.baomidou.mybatisplus.generator.InjectionConfig;
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.rules.DbType;
import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;

import java.util.HashMap;
import java.util.Map;

/**
 * @功能 mybatis-plus生成工具
 * @作者 zuoshuai(MaxBill)
 * @日期 2017/6/2
 * @时间 14:17
 * @备注 MybatisPlusGenerator
 */
public class MybatisPlusGenerator {

    public static void runMybatisPlusGenerator() {
        AutoGenerator autoGenerator = new AutoGenerator();
        // 全局配置
        GlobalConfig config = new GlobalConfig();
        config.setOutputDir("D://data/");
        config.setFileOverride(true);
        config.setActiveRecord(true);
        config.setEnableCache(false);// XML 二级缓存
        config.setBaseResultMap(true);// XML ResultMap
        config.setBaseColumnList(false);// XML columList
        config.setAuthor("zuoshuai");

        // 自定义文件命名,注意 %s 会自动填充表实体属性!
        config.setMapperName("%sMapper");
        config.setXmlName("%sMapper");
        config.setServiceName("%sService");
        config.setServiceImplName("%sServiceImpl");
        config.setControllerName("%sController");
        autoGenerator.setGlobalConfig(config);

        // 数据源配置
        DataSourceConfig dataSourceConfig = new DataSourceConfig();
        dataSourceConfig.setDbType(DbType.MYSQL);
        dataSourceConfig.setDriverName("com.mysql.jdbc.Driver");
        dataSourceConfig.setUsername("root");
        dataSourceConfig.setPassword("admin");
        dataSourceConfig.setUrl("jdbc:mysql://127.0.0.1:3306/maxbill?characterEncoding=utf8");
        autoGenerator.setDataSource(dataSourceConfig);

        // 策略配置
        StrategyConfig strategy = new StrategyConfig();
        //strategy.setTablePrefix("bmd_");// 此处可以修改为您的表前缀
        strategy.setNaming(NamingStrategy.underline_to_camel);// 表名生成策略
        strategy.setInclude(new String[]{"user"}); // 需要生成的表
        // strategy.setExclude(new String[]{"test"}); // 排除生成的表
        // 字段名生成策略
        strategy.setNaming(NamingStrategy.underline_to_camel);
        // 自定义实体父类
//        strategy.setSuperEntityClass("com.maxbill.base.SuperModel");
        // 自定义实体,公共字段
        // strategy.setSuperEntityColumns(new String[] { "test_id", "age" });
        // 自定义 mapper 父类
//        strategy.setSuperMapperClass("com.maxbill.base.SuperMapper");
        // 自定义 service 父类
//        strategy.setSuperServiceClass("com.maxbill.base.SuperService");
        // 自定义 service 实现类父类
//        strategy.setSuperServiceImplClass("com.maxbill.base.SuperServiceImpl");
        // 自定义 controller 父类
//        strategy.setSuperControllerClass("com.maxbill.base.SuperController");
        // 【实体】是否生成字段常量(默认 false)
        // public static final String ID = "test_id";
        strategy.setEntityColumnConstant(false);
        // 【实体】是否为构建者模型(默认 false)
        // public User setName(String name) {this.name = name; return this;}
        strategy.setEntityBuilderModel(true);
        autoGenerator.setStrategy(strategy);

        // 包配置
        PackageConfig packageConfig = new PackageConfig();
        packageConfig.setParent("com.maxbill.base");
        packageConfig.setController("controller");
        packageConfig.setEntity("model");
        packageConfig.setService("service");
        packageConfig.setServiceImpl("service.impl");
        packageConfig.setMapper("mapper");
        packageConfig.setXml("mapper");
//        packageConfig.setModuleName("base");
        autoGenerator.setPackageInfo(packageConfig);

        // 注入自定义配置,可以在 VM 中使用 cfg.abc 设置的值
        InjectionConfig injectionConfig = new InjectionConfig() {
            @Override
            public void initMap() {
                Map<String, Object> map = new HashMap<String, Object>();
                map.put("maxbill", this.getConfig().getGlobalConfig().getAuthor() + "-MybatisPlus");
                this.setMap(map);
            }
        };
        autoGenerator.setCfg(injectionConfig);

        // 执行生成
        autoGenerator.execute();
        // 打印注入设置
        System.err.println(autoGenerator.getCfg().getMap().get("maxbill"));
    }

    public static void main(String[] args) {
        runMybatisPlusGenerator();
    }
}

转载于:https://my.oschina.net/zss1993/blog/916877

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值