mybatis plus代码生成器3.5.1 设置不生成controller

mybatis plus代码生成器3.5.1 设置不生成controller,第1张

生成controller是模板引擎的原因,因此得从此解决,话不多说上代码:

FastAutoGenerator.create("db_url", "db_name", "dp_password")
                // 模板引擎
                .templateEngine(new FreemarkerTemplateEngine())
                // 添加此配置即可解决
                .templateConfig(builder -> builder.controller(""))
                .execute();

参考链接
mybatis plus 代码生成器 设置不生成controller文件这篇文章说的是老版本代码生产器方法,新版本采取了建造者模式构建,因此存在稍许不同但原理一致

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/877135.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-13
下一篇 2022-05-13

发表评论

登录后才能评论

评论列表(0条)

保存