mybatis-plus 代码生成器

依赖

  
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
        
            com.baomidou
            mybatis-plus-boot-starter
            3.4.1
        
        
        
            com.baomidou
            mybatis-plus-generator
            3.4.1
        
        
        
            org.freemarker
            freemarker
        
        
        
            mysql
            mysql-connector-java
            runtime
        
        
            org.apache.commons
            commons-lang3
            3.5
        
    

代码

public class CodeGenerator {


    private static String urlAndDBName="10.221.121.6:3367/xgov_lyb";
    private static String userName="root";
    private static String password="123456";
    /**
     * 

* 读取控制台内容 *

*/ public static String scanner(String tip) { Scanner scanner = new Scanner(System.in); StringBuilder help = new StringBuilder(); help.append("请输入" + tip + ":"); System.out.println(help.toString()); if (scanner.hasNext()) { String ipt = scanner.next(); if (StringUtils.isNotBlank(ipt)) { return ipt; } } throw new MybatisPlusException("请输入正确的" + tip + "!"); } public static void main(String[] args) { // 代码生成器 AutoGenerator mpg = new AutoGenerator(); // 全局配置 GlobalConfig gc = new GlobalConfig(); // 当前项目路径+当前项目名 String projectPath = System.getProperty("user.dir")+"/TEST"; System.out.println(projectPath); gc.setOutputDir(projectPath +"/src/main/java"); //作者 gc.setAuthor("lvyuanbo"); //打开输出目录 gc.setOpen(false); //xml开启 BaseResultMap gc.setBaseResultMap(false); //xml 开启BaseColumnList gc.setBaseColumnList(true); // 实体属性 Swagger2 注解 gc.setSwagger2(true); //设置实体类名称 gc.setEntityName("%sDO"); //设置dao层名称 gc.setMapperName("%sDao"); mpg.setGlobalConfig(gc); // 数据源配置 DataSourceConfig dsc = new DataSourceConfig(); dsc.setUrl("jdbc:mysql://"+urlAndDBName+"?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia" + "/Shanghai"); dsc.setDriverName("com.mysql.cj.jdbc.Driver"); dsc.setUsername(userName); dsc.setPassword(password); mpg.setDataSource(dsc); // 包配置 PackageConfig pc = new PackageConfig(); pc.setParent("com.yeexun") .setEntity("entity") .setMapper("dao") .setService("service") .setServiceImpl("service.impl") .setController("controller"); mpg.setPackageInfo(pc); // 自定义配置 InjectionConfig cfg = new InjectionConfig() { @Override public void initMap() { } }; // 如果模板引擎是 freemarker String templatePath = "/templates/mapper.xml.ftl"; // 如果模板引擎是 velocity //String templatePath = "/templates/mapper.xml.vm"; // 自定义输出配置 List focList = new ArrayList<>(); // 自定义配置会被优先输出 focList.add(new FileOutConfig(templatePath) { @Override public String outputFile(TableInfo tableInfo) { // 自定义输出文件名 , 如果你 Entity 设置了前后缀、此处注意 xml 的名称会跟着发生变化!! return projectPath + "/src/main/resources/mapper/" + tableInfo.getEntityName().substring(0, tableInfo.getEntityName().length()-2) + "Mapper" + StringPool.DOT_XML; } }); cfg.setFileOutConfigList(focList); mpg.setCfg(cfg); // 配置模板 TemplateConfig templateConfig = new TemplateConfig(); templateConfig.setXml(null); mpg.setTemplate(templateConfig); // 策略配置 StrategyConfig strategy = new StrategyConfig(); //数据库表映射到实体的命名策略 strategy.setNaming(NamingStrategy.underline_to_camel); //数据库表字段映射到实体的命名策略 strategy.setColumnNaming(NamingStrategy.underline_to_camel); //lombok模型 strategy.setEntityLombokModel(false); //生成 @Controller 控制器 strategy.setRestControllerStyle(true); strategy.setInclude(); //strategy.setInclude(scanner("表名,多个英文逗号分割").split(",")); strategy.setControllerMappingHyphenStyle(true); //表前缀 strategy.setTablePrefix("t_"); mpg.setStrategy(strategy); mpg.setTemplateEngine(new FreemarkerTemplateEngine()); mpg.execute(); } }

你可能感兴趣的:(笔记,linux,mysql,数据库)