Springboot2快速集成minidao持久層

Springboot2 快速集成minidao持久層

這裏採用springboot版本號: 2.0.4.RELEASE
minidao已經提供自定義starter,集成很是簡單,直接pom引入minidao-spring-boot-starter依賴便可

集成步驟:mysql

  • 第一步: pom引入starter依賴包
<dependency>
        <groupId>org.jeecgframework</groupId>
        <artifactId>minidao-spring-boot-starter</artifactId>
        <version>1.6.7.RELEASE</version>
</dependency>

此starterd對應的minidao最新版本 1.6.7 默認提供了mysql的依賴。spring

  • 第二步:配置minidao的配置參數 (application.properties 或者 application.yml)sql

    minidao:
         base-package: com.springBoot.*
         db-type: mysql
         show-sql: true

第三步: 配置springjdbc所需數據源 ( application.yml)數據庫

spring:       
    datasource:
        url: jdbc:mysql://localhost:3306/minidao-pe
        username: root
        password: root
        driver-class-name: com.mysql.jdbc.Driver

經過以上三步,minidao集成完畢。springboot

參考源碼下載: https://download.csdn.net/dow...
技術交流羣:325978980oracle

Minidao常見配置參數說明:

參數名 用途 默認值
base-package minidao掃描路徑 *
db-type 數據庫類型,經常使用配置: mysql/postgresql/oracle/sqlserver mysql
show-sql 是否打印sql true
empty-interceptor minidao攔截器的bean名字
keyType 是使用什麼字母作關鍵字Map的關鍵字 默認值origin 即和sql保持一致,lower小寫(推薦),upper 大寫 origin
相關文章
相關標籤/搜索