国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Springboot Mybatis Plus代碼自動(dòng)生成工具類

Amos / 916人閱讀

摘要:文章目錄前言一依賴二工具類結(jié)尾前言微軟雅黑代碼生成器,也叫逆向工程,是根據(jù)數(shù)據(jù)庫里的表結(jié)構(gòu),自動(dòng)生成對應(yīng)的實(shí)體類映射文件和接口。微軟雅黑看到很多小伙伴在為數(shù)據(jù)庫生成實(shí)體類發(fā)愁,現(xiàn)分享給大家,提高開發(fā)效率。


前言

代碼生成器,也叫逆向工程,是根據(jù)數(shù)據(jù)庫里的表結(jié)構(gòu),自動(dòng)生成對應(yīng)的實(shí)體類、映射文件和接口。

看到很多小伙伴在為數(shù)據(jù)庫生成實(shí)體類發(fā)愁,現(xiàn)分享給大家,提高開發(fā)效率。


一、pom依賴

<dependency>            <groupId>com.baomidou</groupId>            <artifactId>mybatis-plus-boot-starter</artifactId>            <version>3.4.1</version>        </dependency>        <dependency>            <groupId>com.baomidou</groupId>            <artifactId>mybatis-plus-generator</artifactId>            <version>3.4.1</version>        </dependency>        <dependency>            <groupId>org.freemarker</groupId>            <artifactId>freemarker</artifactId>            <version>2.3.30</version>        </dependency>

二、工具類

package com.his.utils;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;/** * Mybatis plus代碼自動(dòng)生成 */public class MybatisPlusUtil {    /** 作者 */    public static final String AUTHOR = "dd";    /** 類命名 */    /**     * Entity命名     */    public static final String FILE_NAME_ENTITY = "%sEntity";    /**     * MAPPER命名     */    public static final String FILE_NAME_MAPPER = "%sMapper";    /**     * xml命名     */    public static final String FILE_NAME_XML = "%sMapper";    /**     * Service命名     */    public static final String FILE_NAME_SERVICE = "%sService";    /**     * ServiceImpl命名     */    public static final String FILE_NAME_SERVICE_IMPL = "%sDO";    /**     * Controller命名     */    public static final String FILE_NAME_CONTROLLER = "%sController";    /**     包命名,可以根據(jù)自己的項(xiàng)目情況自定義生成后的存放路徑     entity默認(rèn)路徑為父目錄.entity     mapper默認(rèn)路徑為父目錄.mapper     service默認(rèn)路徑為父目錄.service     serviceImpl默認(rèn)路徑為父目錄.service.impl     controller默認(rèn)路徑為父目錄.controller     */    /**     * PARENT命名     */    public static final String PACKAGE_NAME_PARENT = "com.his";    /**     * Entity命名     */    public static final String PACKAGE_NAME_ENTITY = "repository.entity.control";    /**     * MAPPER命名     */    public static final String PACKAGE_NAME_MAPPER = "repository.mapper.control";    /**     * xml命名     */    public static final String PACKAGE_NAME_XML = "sys";    /**     * Service命名     */    public static final String PACKAGE_NAME_SERVICE = "domain.control";    /**     * ServiceImpl命名     */    public static final String PACKAGE_NAME_SERVICE_IMPL = "domain.control";    /**     * Controller命名     */    public static final String PACKAGE_NAME_CONTROLLER = "facade.controller.control";    /**     * 讀取控制臺(tái)內(nèi)容     */    private static String scanner(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 + "!");    }    /**     * 運(yùn)行這個(gè)main方法進(jìn)行代碼生成     */    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.setFileOverride(true);        gc.setAuthor(AUTHOR);        gc.setOpen(false);        gc.setActiveRecord(false);// 不需要ActiveRecord特性的請改為false        gc.setEnableCache(false);// XML 二級緩存        gc.setSwagger2(true); // 實(shí)體屬性 Swagger2 注解        gc.setBaseResultMap(true);        gc.setBaseColumnList(true);        gc.setEntityName(FILE_NAME_ENTITY);        gc.setMapperName(FILE_NAME_MAPPER);        gc.setXmlName(FILE_NAME_XML);        gc.setServiceName(FILE_NAME_SERVICE);        gc.setServiceImplName(FILE_NAME_SERVICE_IMPL);        gc.setControllerName(FILE_NAME_CONTROLLER);        mpg.setGlobalConfig(gc);        // 數(shù)據(jù)源配置        DataSourceConfig dsc = new DataSourceConfig();        dsc.setUrl("jdbc:oracle:thin:@ip:port/test");        dsc.setDriverName("oracle.jdbc.OracleDriver");        dsc.setUsername("user");        dsc.setPassword("pass");        mpg.setDataSource(dsc);        //包配置        PackageConfig pc = new PackageConfig();        pc.setModuleName(null);        pc.setParent(PACKAGE_NAME_PARENT);        pc.setController(PACKAGE_NAME_CONTROLLER);        pc.setService(PACKAGE_NAME_SERVICE);        pc.setServiceImpl(PACKAGE_NAME_SERVICE_IMPL);        pc.setMapper(PACKAGE_NAME_MAPPER);        pc.setEntity(PACKAGE_NAME_ENTITY);        pc.setXml(PACKAGE_NAME_XML);        mpg.setPackageInfo(pc);        // 策略配置        StrategyConfig strategy = new StrategyConfig();        strategy.setNaming(NamingStrategy.underline_to_camel);        strategy.setColumnNaming(NamingStrategy.underline_to_camel);        //strategy.setEntityLombokModel(true);        strategy.setRestControllerStyle(true);        strategy.setInclude(scanner("表名,多個(gè)英文逗號(hào)分割").split(","));        strategy.setControllerMappingHyphenStyle(true);        // 設(shè)置表前綴        strategy.setTablePrefix("IEMR_");        mpg.setStrategy(strategy);        mpg.setTemplateEngine(new FreemarkerTemplateEngine());        // 自定義配置        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 的名稱會(huì)跟著發(fā)生變化!!                return projectPath + "/src/main/resources/mapper/"                        + "/" + tableInfo.getMapperName() + StringPool.DOT_XML;            }        });        cfg.setFileOutConfigList(focList);        mpg.setCfg(cfg);        // 配置模板        TemplateConfig templateConfig = new TemplateConfig();        templateConfig.setXml(null);        mpg.setTemplate(templateConfig);        mpg.execute();    }}

結(jié)尾

  • 感謝大家的耐心閱讀,如有建議請私信或評論留言。
  • 如有收獲,勞煩支持,關(guān)注、點(diǎn)贊、評論、收藏均可,博主會(huì)經(jīng)常更新,與大家共同進(jìn)步

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://specialneedsforspecialkids.com/yun/124717.html

相關(guān)文章

  • springboot+mybatis+mybatis-plus分頁查詢(簡單實(shí)現(xiàn))

    摘要:讀取控制臺(tái)內(nèi)容請輸入請輸入正確的代碼生成器全局配置實(shí)體屬性注解數(shù)據(jù)源配置包配置這里有個(gè)模塊名的配置,可以注釋掉不用。 最近在研究mybatis,然后就去找簡化mybatis開發(fā)的工具,發(fā)現(xiàn)就有通用Mapper和mybatis-plus兩個(gè)比較好的可是使用,可是經(jīng)過對比發(fā)現(xiàn)還是mybatis-plus比較好,個(gè)人覺得,勿噴。。。 集成還是非常簡單的,然后就在研究怎么分頁,開始研究通用ma...

    Pocher 評論0 收藏0
  • MyBatis-Plus初步

    摘要:是最流行的關(guān)系型數(shù)據(jù)庫管理系統(tǒng)之一,在應(yīng)用方面,是最好的,關(guān)系數(shù)據(jù)庫管理系統(tǒng)應(yīng)用軟件。是一種關(guān)系數(shù)據(jù)庫管理系統(tǒng),關(guān)系數(shù)據(jù)庫將數(shù)據(jù)保存在不同的表中,而不是將所有數(shù)據(jù)放在一個(gè)大倉庫內(nèi),這樣就增加了速度并提高了靈活性。 本章主要是對MyBatis-Plus的初步介紹,包括一些背景知識(shí)、環(huán)境搭建、初步使用等知識(shí)和例子。對于背景知識(shí),主要包含對MyBatis-Plus的特性介紹、為什么使用MyB...

    娣辯孩 評論0 收藏0
  • SpringBoot整合MybatisPlus的簡單教程(簡單整合)

    摘要:最近在研究,順便就會(huì)看看數(shù)據(jù)庫連接這一塊的知識(shí),所以當(dāng)我發(fā)現(xiàn)有通用和這兩款網(wǎng)絡(luò)上比較火的簡化開發(fā)的優(yōu)秀軟件之后。先創(chuàng)建一個(gè)的項(xiàng)目,可以參考我之前的文章的簡單教程一項(xiàng)目的創(chuàng)建。打開文件,將最新的相關(guān)的包都引用進(jìn)來。 最近在研究springboot,順便就會(huì)看看數(shù)據(jù)庫連接這一塊的知識(shí) ,所以當(dāng)我發(fā)現(xiàn)有通用Mapper和MybatisPlus這兩款網(wǎng)絡(luò)上比較火的簡化mybatis開發(fā)的優(yōu)秀軟...

    duan199226 評論0 收藏0

發(fā)表評論

0條評論

閱讀需要支付1元查看
<