mybatis-plus插件快速生成代碼

需要的依賴:

<dependency>

? ? <groupId>com.baomidou</groupId>

? ? <artifactId>mybatis-plus-boot-starter</artifactId>

? ? <version>3.4.0</version>

</dependency>

<dependency>

? ? <groupId>com.baomidou</groupId>

? ? <artifactId>mybatis-plus-generator</artifactId>

? ? <version>3.4.0</version>

</dependency>

<dependency>

? ? <groupId>org.freemarker</groupId>

? ? <artifactId>freemarker</artifactId>

? ? <version>2.3.30</version>

</dependency>

創(chuàng)建代碼生成類:

package com.example;

import com.baomidou.mybatisplus.core.exceptions.MybatisPlusException;

import com.baomidou.mybatisplus.core.toolkit.StringPool;

import com.baomidou.mybatisplus.core.toolkit.StringUtils;

import com.baomidou.mybatisplus.generator.AutoGenerator;

import com.baomidou.mybatisplus.generator.InjectionConfig;

import com.baomidou.mybatisplus.generator.config.*;

import com.baomidou.mybatisplus.generator.config.po.TableInfo;

import com.baomidou.mybatisplus.generator.config.rules.NamingStrategy;

import com.baomidou.mybatisplus.generator.engine.FreemarkerTemplateEngine;

import java.util.ArrayList;

import java.util.List;

import java.util.Scanner;

public class CodeGenerator{

? ? /**

? ? *

? ? * 讀取控制臺內(nèi)容

? ? *

? ? */

? ? public static Stringscanner(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");

? ? ? ? gc.setOutputDir(projectPath +"/src/main/java");

? ? ? ? gc.setAuthor("jobob");

? ? ? ? gc.setOpen(false);

? ? ? ? // gc.setSwagger2(true); 實體屬性 Swagger2 注解

? ? ? ? mpg.setGlobalConfig(gc);

? ? ? ? // 數(shù)據(jù)源配置

? ? ? ? DataSourceConfig dsc =new DataSourceConfig();

? ? ? ? dsc.setUrl("jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true");

? ? ? ? // dsc.setSchemaName("public");

? ? ? ? dsc.setDriverName("com.mysql.cj.jdbc.Driver");

? ? ? ? dsc.setUsername("root");

? ? ? ? dsc.setPassword("123456");

? ? ? ? mpg.setDataSource(dsc);

? ? ? ? // 包配置

? ? ? ? PackageConfig pc =new PackageConfig();

? ? ? ? pc.setModuleName(scanner("模塊名"));

? ? ? ? pc.setParent("com.baomidou.ant");

? ? ? ? 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<>();

? ? ? ? // 自定義配置會被優(yōu)先輸出

? ? ? ? boolean add = focList.add(new FileOutConfig(templatePath) {

? ? ? ? ? ? @Override

? ? ? ? ? ? public StringoutputFile(TableInfo tableInfo) {

? ? ? ? ? ? ? ? // 自定義輸出文件名 饺藤, 如果你 Entity 設(shè)置了前后綴剑辫、此處注意 xml 的名稱會跟著發(fā)生變化8删伞!

? ? ? ? ? ? ? ? return projectPath +"/src/main/resources/mapper/" +pc.getModuleName()

? ? ? ? ? ? ? ? ? ? ? ? +"/" + tableInfo.getEntityName() +"Mapper" + StringPool.DOT_XML;

? ? ? ? ? ? }

? ? ? ? });

? ? ? ? /*

cfg.setFileCreate(new IFileCreate() {

@Override

public boolean isCreate(ConfigBuilder configBuilder, FileType fileType, String filePath) {

// 判斷自定義文件夾是否需要創(chuàng)建

checkDir("調(diào)用默認(rèn)方法創(chuàng)建的目錄妹蔽,自定義目錄用");

if (fileType == FileType.MAPPER) {

// 已經(jīng)生成 mapper 文件判斷存在椎眯,不想重新生成返回 false

return !new File(filePath).exists();

}

// 允許生成模板文件

return true;

}

});

*/

? ? ? ? cfg.setFileOutConfigList(focList);

? ? ? ? mpg.setCfg(cfg);

? ? ? ? // 配置模板

? ? ? ? TemplateConfig templateConfig =new TemplateConfig();

? ? ? ? // 配置自定義輸出模板

//指定自定義模板路徑挠将,注意不要帶上.ftl/.vm, 會根據(jù)使用的模板引擎自動識別

// templateConfig.setEntity("templates/entity2.java");

// templateConfig.setService();

// templateConfig.setController();

? ? ? ? templateConfig.setXml(null);

? ? ? ? mpg.setTemplate(templateConfig);

? ? ? ? // 策略配置

? ? ? ? StrategyConfig strategy =new StrategyConfig();

? ? ? ? strategy.setNaming(NamingStrategy.underline_to_camel);

? ? ? ? strategy.setColumnNaming(NamingStrategy.underline_to_camel);

? ? ? ? strategy.setSuperEntityClass("你自己的父類實體,沒有就不用設(shè)置!");

? ? ? ? strategy.setEntityLombokModel(true);

? ? ? ? strategy.setRestControllerStyle(true);

? ? ? ? // 公共父類

? ? ? ? strategy.setSuperControllerClass("你自己的父類控制器,沒有就不用設(shè)置!");

? ? ? ? // 寫于父類中的公共字段

? ? ? ? strategy.setSuperEntityColumns("id");

? ? ? ? strategy.setInclude(scanner("表名,多個英文逗號分割").split(","));

? ? ? ? strategy.setControllerMappingHyphenStyle(true);

? ? ? ? strategy.setTablePrefix(pc.getModuleName() +"_");

? ? ? ? mpg.setStrategy(strategy);

? ? ? ? mpg.setTemplateEngine(new FreemarkerTemplateEngine());

? ? ? ? mpg.execute();

? ? }

}


直接復(fù)制到項目中编整,修改對應(yīng)的package直接運行舔稀。在控制臺根據(jù)提示輸入即可。此代碼為官方實例掌测。不明白的可以在官方網(wǎng)站查看内贮。

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市赏半,隨后出現(xiàn)的幾起案子贺归,更是在濱河造成了極大的恐慌,老刑警劉巖断箫,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件拂酣,死亡現(xiàn)場離奇詭異,居然都是意外死亡仲义,警方通過查閱死者的電腦和手機婶熬,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來埃撵,“玉大人赵颅,你說我怎么就攤上這事≡萘酰” “怎么了饺谬?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長谣拣。 經(jīng)常有香客問我募寨,道長,這世上最難降的妖魔是什么森缠? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任拔鹰,我火速辦了婚禮,結(jié)果婚禮上贵涵,老公的妹妹穿的比我還像新娘列肢。我一直安慰自己,他們只是感情好宾茂,可當(dāng)我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布瓷马。 她就那樣靜靜地躺著,像睡著了一般跨晴。 火紅的嫁衣襯著肌膚如雪决采。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天坟奥,我揣著相機與錄音树瞭,去河邊找鬼。 笑死爱谁,一個胖子當(dāng)著我的面吹牛晒喷,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播访敌,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼凉敲,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了寺旺?” 一聲冷哼從身側(cè)響起爷抓,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎阻塑,沒想到半個月后蓝撇,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡陈莽,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年渤昌,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片走搁。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡独柑,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出私植,到底是詐尸還是另有隱情忌栅,我是刑警寧澤,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布曲稼,位于F島的核電站索绪,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏躯肌。R本人自食惡果不足惜者春,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望清女。 院中可真熱鬧钱烟,春花似錦、人聲如沸嫡丙。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽曙博。三九已至拥刻,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間父泳,已是汗流浹背般哼。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工吴汪, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人蒸眠。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓漾橙,卻偏偏與公主長得像,于是被迫代替她去往敵國和親楞卡。 傳聞我的和親對象是個殘疾皇子霜运,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,786評論 2 345