SpringBoot整合Mybatis-Plus代碼生成器實(shí)例

本篇內(nèi)容主要講解“SpringBoot整合Mybatis-Plus代碼生成器實(shí)例”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“SpringBoot整合Mybatis-Plus代碼生成器實(shí)例”吧!

創(chuàng)新互聯(lián)公司主營(yíng)京口網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營(yíng)網(wǎng)站建設(shè)方案,APP應(yīng)用開(kāi)發(fā),京口h5微信小程序搭建,京口網(wǎng)站營(yíng)銷(xiāo)推廣歡迎京口等地區(qū)企業(yè)咨詢(xún)

 

總體步驟

1.springboot搭建(thymeleaf,springmvc,MySQL驅(qū)動(dòng))。

2.整合mybatisplus相關(guān)的1個(gè)依賴(lài)核心包;然后mybatis相關(guān)配置。

3.集成代碼生成器。需要代碼生成器的核心包和代碼生成器要用的模板引擎包。使用官方網(wǎng)站提供的主類(lèi)(配置數(shù)據(jù)源,配置生成策略)。

4.啟動(dòng)類(lèi)上面需要加入@MapperScan,進(jìn)行mybatis代理接口和mapper/**/*Mapper.xml代理關(guān)系的綁定。

5.啟動(dòng)測(cè)試。

 

pom.xml

<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.4.5</version>
        <relativePath/> <!-- lookup parent from repository -->    </parent>
    <groupId>com.example</groupId>
    <artifactId>springboot_jxc_0507</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>springboot_jxc_0507</name>
    <description>Demo project for Spring Boot</description>
    <properties>
        <java.version>1.8</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.4.2</version>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-generator</artifactId>
            <version>3.4.1</version>
        </dependency>
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity-engine-core</artifactId>
            <version>2.3</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>
application.properties
# thymeleafspring.thymeleaf.prefix=classpath:/templates/spring.thymeleaf.check-template-location=truespring.thymeleaf.suffix=.htmlspring.thymeleaf.encoding=utf-8spring.thymeleaf.content-type=text/htmlspring.thymeleaf.mode=HTML5spring.thymeleaf.cache=false

application.yml

spring:  datasource:driver-class-name: com.mysql.cj.jdbc.Driver    url: jdbc:mysql://127.0.0.1:3306/mybatisplus0507?characterEncoding=utf8&useSSL=false&serverTimezone=UTC&rewriteBatchedStatements=trueusername: rootpassword: rootmybatis-plus:  configuration:map-underscore-to-camel-case: true    auto-mapping-behavior: full    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl  mapper-locations: classpath*:mapper/**/*Mapper.xmllogging:  level:root: info    com.example.springboot_jxc_0507: info
CodeGenerator.java
package com.example.mybatisplus_doc_0508.conf;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;/** * @Auther: GongXl * @Date: 2021/5/8 10:04 * @Description: */public class CodeGenerator {/**     * <p>     * 讀取控制臺(tái)內(nèi)容     * </p>     */    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("gxl");gc.setOpen(false);// gc.setSwagger2(true); 實(shí)體屬性 Swagger2 注解        mpg.setGlobalConfig(gc);// 數(shù)據(jù)源配置        DataSourceConfig dsc = new DataSourceConfig();dsc.setUrl("jdbc:mysql://127.0.0.1:3306/mybatisplus_doc_0508?characterEncoding=utf8&useSSL=false&serverTimezone=UTC&rewriteBatchedStatements=true");// dsc.setSchemaName("public");        dsc.setDriverName("com.mysql.cj.jdbc.Driver");dsc.setUsername("root");dsc.setPassword("root");mpg.setDataSource(dsc);// 包配置        PackageConfig pc = new PackageConfig();pc.setModuleName(scanner("請(qǐng)輸入模塊名(推薦用英文)"));pc.setParent("com.example.mybatisplus_doc_0508");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.setFileCreate(new IFileCreate() {            @Override            public boolean isCreate(ConfigBuilder configBuilder, FileType fileType, String filePath) {                // 判斷自定義文件夾是否需要?jiǎng)?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, 會(huì)根據(jù)使用的模板引擎自動(dòng)識(shí)別        // 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("你自己的父類(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();
    }
}
SpringBoot啟動(dòng)類(lèi)
package com.example.springboot_jxc_0507;import org.mybatis.spring.annotation.MapperScan;import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;@SpringBootApplication@MapperScan("com.example.springboot_jxc_0507.jxc.mapper")public class SpringbootJxc0507Application {public static void main(String[] args) {SpringApplication.run(SpringbootJxc0507Application.class, args);
    }

}

到此,相信大家對(duì)“SpringBoot整合Mybatis-Plus代碼生成器實(shí)例”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!

網(wǎng)站標(biāo)題:SpringBoot整合Mybatis-Plus代碼生成器實(shí)例
網(wǎng)站URL:http://muchs.cn/article38/geecsp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、面包屑導(dǎo)航、靜態(tài)網(wǎng)站、網(wǎng)站維護(hù)動(dòng)態(tài)網(wǎng)站、搜索引擎優(yōu)化

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話(huà):028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

綿陽(yáng)服務(wù)器托管