91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot如何使用MyBatis-Puls代碼生成器

發布時間:2020-10-27 18:23:19 來源:億速云 閱讀:148 作者:Leah 欄目:開發技術

這篇文章將為大家詳細講解有關SpringBoot如何使用MyBatis-Puls代碼生成器,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

數據庫結構:

SpringBoot如何使用MyBatis-Puls代碼生成器

依賴導入

 <dependency>
      <groupId>mysql</groupId>
      <artifactId>mysql-connector-java</artifactId>
      <scope>runtime</scope>
      <version>5.1.39</version>
    </dependency>
        <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>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <optional>true</optional>
    </dependency>

配置freemarker是因為myBatis中默認的引擎是freemarker,支持自定義引擎

目錄結構

SpringBoot如何使用MyBatis-Puls代碼生成器

官方生成器類

CodeGenerator

public class CodeGenerator {
  /**
   * <p>
   * 讀取控制臺內容
   * </p>
   */
  public 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 + "!");
  }

  public static void main(String[] args) {
    // 代碼生成器
    AutoGenerator mpg = new AutoGenerator();

    // 全局配置
    GlobalConfig gc = new GlobalConfig();
    String projectPath = System.getProperty("user.dir");
    /**
     * 這里需要設定一下保存的地址是本項目下的/src/main/java
     */
    gc.setOutputDir(projectPath + "/maven1018/src/main/java");
    gc.setAuthor("XYD");
    gc.setOpen(false);
    // gc.setSwagger2(true); 實體屬性 Swagger2 注解
    mpg.setGlobalConfig(gc);

    // 數據源配置
    /**
     * 設置數據庫名稱和數據庫賬戶密碼
     */
    DataSourceConfig dsc = new DataSourceConfig();
    dsc.setUrl("jdbc:mysql://localhost:3306/temporary&#63;useUnicode=true&useSSL=false&characterEncoding=utf8");
    // dsc.setSchemaName("public");
    dsc.setDriverName("com.mysql.jdbc.Driver");
    dsc.setUsername("root");
    dsc.setPassword("12345");
    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";

    /**
     * 這里定義的是生成xml文檔的輸出配置,存放在resource下
     */
    // 自定義輸出配置
//    List<FileOutConfig> focList = new ArrayList<>();
    // 自定義配置會被優先輸出
//    focList.add(new FileOutConfig(templatePath) {
//      @Override
//      public String outputFile(TableInfo tableInfo) {
//        // 自定義輸出文件名 , 如果你 Entity 設置了前后綴、此處注意 xml 的名稱會跟著發生變化!!
//        return projectPath + "/maven1018/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) {
        // 判斷自定義文件夾是否需要創建
        checkDir("調用默認方法創建的目錄,自定義目錄用");
        if (fileType == FileType.MAPPER) {
          // 已經生成 mapper 文件判斷存在,不想重新生成返回 false
          return !new File(filePath).exists();
        }
        // 允許生成模板文件
        return true;
      }
    });
    */
//    cfg.setFileOutConfigList(focList);
//    mpg.setCfg(cfg);

    // 配置模板
    TemplateConfig templateConfig = new TemplateConfig();

    // 配置自定義輸出模板
    //指定自定義模板路徑,注意不要帶上.ftl/.vm, 會根據使用的模板引擎自動識別
    // 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("你自己的父類實體,沒有就不用設置!");

    strategy.setEntityLombokModel(true);
    strategy.setRestControllerStyle(true);

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

    // 寫于父類中的公共字段
//    strategy.setSuperEntityColumns("id"); //注釋這行否則生成的實體類中沒有Id變量

    strategy.setInclude(scanner("表名,多個英文逗號分割").split(","));
    strategy.setControllerMappingHyphenStyle(true);
    strategy.setTablePrefix(pc.getModuleName() + "_");
    mpg.setStrategy(strategy);
    mpg.setTemplateEngine(new FreemarkerTemplateEngine());
    mpg.execute();
  }

}

代碼生成后的配置

  • 默認生成的代碼中實體類是沒有id屬性的,在代碼生成類中注釋掉strategy.setSuperEntityColumns("id");
  • 默認生成的mapper對象上是沒有@Mapper注解,需要在主配置類中加入@MapperScan注解,進行mapper掃描
@SpringBootApplication
@MapperScan("com.example.crount.mapper")
public class Demo1018Application {

  public static void main(String[] args) {
    SpringApplication.run(Demo1018Application.class, args);
  }

}

另外自己要運行代碼進行數據庫訪問,所以application.properties中也要配置數據源

# 數據庫配置
spring.datasource.url=jdbc:mysql:///temporary&#63;characterEncoding=utf-8&useSSL=false
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.username=root
spring.datasource.password=12345

#連接池配置
#spring.datasource.type=com.alibaba.druid.pool.DruidDataSource

controller開發

注入service,修改訪問的地址,寫入訪問的方法

@RestController
public class StudentController {

  @Autowired
  private IStudentService studentService;

  @GetMapping("/demo1")
  public String m1(){
    Student student = studentService.getById(3);
    return student.getSSex();
  }

}

生成的代碼放到主配置類的同級目錄下,運行代碼

SpringBoot如何使用MyBatis-Puls代碼生成器

關于SpringBoot如何使用MyBatis-Puls代碼生成器就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

嘉善县| 张家港市| 昭平县| 九江县| 雷州市| 延长县| 临潭县| 昂仁县| 崇义县| 大安市| 肥西县| 繁峙县| 宜宾市| 嘉兴市| 四会市| 拜城县| 柘荣县| 蒙山县| 微博| 曲水县| 房产| 绥芬河市| 大足县| 循化| 枞阳县| 屯昌县| 昌江| 花莲县| 屏东市| 绥中县| 余姚市| 巴林右旗| 公主岭市| 苗栗市| 洛隆县| 浦北县| 鹿邑县| 北京市| 荥阳市| 高碑店市| 买车|