mybatis codegenerator排錯(cuò)
1、大三的同學(xué)在使用mybatis 官方的codegenerator類(lèi)時(shí)出現(xiàn)錯(cuò)誤提示,由于缺乏命令行方面的知識(shí),排錯(cuò)有一定的困難。
2、修改過(guò)后的代碼:
public class CodeGenerator {
? ?public static String scanner(String tip) {
? ? ? ?Scanner scanner = new Scanner(System.in);
? ? ? ?StringBuilder help = new StringBuilder();
? ? ? ?help.append("請(qǐng)輸入" + tip + ":");
? ? ? ?System.out.println(help.toString());
? ? ? ?if (scanner.hasNext()) {
? ? ? ? ? ?String ipt = scanner.next();
? ? ? ? ? ?if (StringUtils.isNotBlank(ipt)) {
? ? ? ? ? ? ? ?return ipt;
? ? ? ? ? ?}
? ? ? ?}
? ? ? ?throw new MybatisPlusException("請(qǐng)輸入正確的" + tip + "!");
? ?}
? ?public static void main(String[] args) {
? ? ? ?// 代碼生成器
? ? ? ?AutoGenerator mpg = new AutoGenerator();
? ? ? ?// 全局配置
? ? ? ?GlobalConfig gc = new GlobalConfig();
? ? ? ?String projectPath = System.getProperty("user.dir");
? ? ? ?gc.setOutputDir(projectPath+ "\\src\\main\\java");
? ? ? ?gc.setAuthor("張三");
? ? ? ?gc.setOpen(false);
? ? ? ?gc.setSwagger2(true); //實(shí)體屬性 Swagger2 注解
? ? ? ?gc.setBaseResultMap(true);
? ? ? ?gc.setBaseColumnList(true);
? ? ? ?gc.setServiceImplName("%sService");
? ? ? ? mpg.setGlobalConfig(gc);
? ? ? ?// 數(shù)據(jù)源配置
? ? ? ?DataSourceConfig dsc = new DataSourceConfig();
? ? ? ?dsc.setUrl("jdbc:mysql://localhost:3306/數(shù)據(jù)庫(kù)名?useUnicode=true&useSSL=false&characterEncoding=utf8");
? ? ? ?// dsc.setSchemaName("public");
? ? ? ?dsc.setDriverName("com.mysql.cj.jdbc.Driver");
? ? ? ?dsc.setUsername("用戶(hù)名");
? ? ? ?dsc.setPassword("密碼");
? ? ? ?mpg.setDataSource(dsc);
? ? ? ?// 包配置
? ? ? ?PackageConfig pc = new PackageConfig();
? ? ? ?pc.setParent("com.kaifa")
? ? ? ? ? ? ? ?.setEntity("entity")
? ? ? ? ? ? ? ?.setMapper("mapper")
? ? ? ? ? ? ? ?.setService("service")
? ? ? ? ? ? ? ?.setServiceImpl("service.impl")
? ? ? ? ? ? ? ?.setController("controller");
? ? ? ? mpg.setPackageInfo(pc);
? ? ? ?// 自定義配置
? ? ? ?InjectionConfig cfg = new InjectionConfig() {
? ? ? ? ? ?@Override
? ? ? ? ? ?public void initMap() {
? ? ? ? ? ? ? ?// to do nothing
? ? ? ? ? ?}
? ? ? ?};
? ? ? ?// 如果模板引擎是 freemarker
? ? ? ?String templatePath = "/templates/mapper.xml.ftl";
? ? ? ?// 如果模板引擎是 velocity
? ? ? ?// String templatePath = "/templates/mapper.xml.vm";
? ? ? ?// 自定義輸出配置
? ? ? ?List<FileOutConfig> focList = new ArrayList<>();
? ? ? ?// 自定義配置會(huì)被優(yōu)先輸出
? ? ? ?focList.add(new FileOutConfig(templatePath) {
? ? ? ? ? ?@Override
? ? ? ? ? ?public String outputFile(TableInfo tableInfo) {
? ? ? ? ? ? ? ?// 自定義輸出文件名 , 如果你 Entity 設(shè)置了前后綴、此處注意 xml 的名稱(chēng)會(huì)跟著發(fā)生變化!!
? ? ? ? ? ? ? ?return projectPath + "\\src\\main\\resources\\mapper" + pc.getModuleName()
? ? ? ? ? ? ? ? ? ? ? ?+ "\\" + tableInfo.getEntityName() + "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);
? ? ? // strategy.setSuperEntityClass("你自己的父類(lèi)實(shí)體,沒(méi)有就不用設(shè)置!");
? ? ? ?strategy.setEntityLombokModel(true);
? ? ? ?strategy.setRestControllerStyle(true);
? ? ? ?// 公共父類(lèi)
? ? ? ?//strategy.setSuperControllerClass("你自己的父類(lèi)控制器,沒(méi)有就不用設(shè)置!");
? ? ? ?// 寫(xiě)于父類(lèi)中的公共字段
? ? ? ?//strategy.setSuperEntityColumns("id");
? ? ? ?strategy.setInclude(scanner("表名,多個(gè)英文逗號(hào)分割").split(","));
? ? ? ?strategy.setControllerMappingHyphenStyle(true);
? ? ? ?//strategy.setTablePrefix(pc.getModuleName() + "_");
? ? ? ?mpg.setStrategy(strategy);
? ? ? ?mpg.setTemplateEngine(new FreemarkerTemplateEngine());
? ? ? ?mpg.execute();
? ?}
}
3、以上以mysql數(shù)據(jù)庫(kù)為例,紅色部分需要根據(jù)實(shí)際情況修改。