最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

mybatis codegenerator排錯(cuò)

2023-07-29 22:50 作者:shaofay  | 我要投稿

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í)際情況修改。


mybatis codegenerator排錯(cuò)的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
洛扎县| 大竹县| 凌云县| 韶山市| 个旧市| 德州市| 永城市| 本溪市| 贵溪市| 三河市| 徐水县| 航空| 西贡区| 井研县| 谢通门县| 治多县| 沂南县| 沛县| 修文县| 永吉县| 闽清县| 黄陵县| 西丰县| 斗六市| 泰兴市| 汉寿县| 大洼县| 闻喜县| 江口县| 阿合奇县| 淄博市| 永仁县| 昭苏县| 侯马市| 锦屏县| 墨竹工卡县| 漠河县| 庆元县| 昌乐县| 衡阳市| 扎兰屯市|