MyBatis-Plus自动生成代码工具的配置

时间:2025-04-03 09:13:07
  • public class JavaGenerator {
  • /**
  • * <p>
  • * 读取控制台内容,用于自己输入要生成的模块(生成后以文件夹形式)和表名
  • * </p>
  • */
  • public static String scanner(String tip) {
  • Scanner scanner = new Scanner(System.in);
  • StringBuilder help = new StringBuilder();
  • ("请输入" + tip + ":");
  • (());
  • if (()) {
  • String ipt = scanner.next();
  • if ((ipt)) {
  • return ipt;
  • }
  • }
  • throw new MybatisPlusException("请输入正确的" + tip + "!");
  • }
  • public static void main(String[] args) {
  • // 代码生成器
  • AutoGenerator mpg = new AutoGenerator();
  • // 全局配置
  • GlobalConfig gc = new GlobalConfig();
  • String projectPath = ("");//获取当前项目的路径
  • (projectPath + "/src/main/java");//配置生成的代码目录
  • ((""));//获取当前的用户名
  • (false);
  • ("%sDAO");//配置生成后Mapper的命名方式
  • ("%sBO");//配置生成后实体类的命名方式
  • (gc);
  • // 数据源配置(根据自己的实际数据库配置信息填写)
  • DataSourceConfig dsc = new DataSourceConfig();
  • ();
  • ("jdbc:mysql://localhost:3306/itsys_bastion?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC");
  • // ("public");
  • ("");
  • ("root");
  • ("shugege");
  • (dsc);
  • // 包配置
  • PackageConfig pc = new PackageConfig();
  • String moduleName = scanner("角色名");//模块名可根据实际情况是否需要
  • (".mybatis_plus");//自己的包名
  • //配置路径
  • ("");
  • ("mapper." + moduleName);
  • ("service." + moduleName);
  • ("service." + moduleName + ".impl");
  • //不生成Controller 和 xml 两个命名的包(不是指***.xml文件)
  • //因为我们项目没有Controller层 和使用的是MyBatis的注解,所以不需要生成Controller和XML文件
  • ("");
  • ("");
  • (pc);
  • // 自定义配置
  • InjectionConfig cfg = new InjectionConfig() {
  • @Override
  • public void initMap() {
  • // to do nothing
  • }
  • };
  • (new IFileCreate() {
  • @Override
  • public boolean isCreate(ConfigBuilder configBuilder, FileType fileType, String filePath) {
  • //这里配置不想生成的文件类型
  • //不生成controller文件
  • if (fileType == ) {
  • return false;
  • }
  • //不生成xml文件
  • if (fileType == ) {
  • return false;
  • }
  • // 允许生成模板文件
  • return true;
  • }
  • });
  • (cfg);
  • // 配置模板 我这里没有使用自定义的模板 所以这块用不上
  • //TemplateConfig templateConfig = new TemplateConfig();
  • // 配置自定义输出模板
  • //("");
  • //("");
  • // 策略配置
  • StrategyConfig strategy = new StrategyConfig();
  • (NamingStrategy.underline_to_camel);// 表名生成策略
  • (NamingStrategy.underline_to_camel);
  • // 自定义实体父类
  • // ("");
  • (true);
  • (true);
  • // (true);
  • // 公共父类
  • // ("你自己的父类控制器,没有就不用设置!");
  • // 自定义实体,公共字段
  • // ("id");
  • (scanner("表名,多个英文逗号分割").split(","));
  • // (true);
  • // 此处可以修改为您的表前缀
  • // (() + "_");
  • ("t_");
  • (strategy);
  • (new FreemarkerTemplateEngine());
  • ();
  • }
  • }