springboot整合mybatis及其反向工程
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
" >
<generatorConfiguration >
<!-- mysql jar 檔案位置 -->
<classPathEntry location="D:\jarpackage\mysql-connector-java-8.0.22\mysql-connector-java-8.0.22.jar" />
<context id="store" targetRuntime="MyBatis3">
<commentGenerator>
<!-- 是否去除自動生成的註釋 true :是 : false: 否 -->
<property name="suppressAllComments" value="true" />
<!-- 是否去除所有自動生成的檔案的時間戳,預設為 false -->
<property name="suppressDate" value="true"/>
</commentGenerator>
<!-- 資料庫連線的資訊:驅動類、連線地址、使用者名稱、密碼 -->
<jdbcConnection driverClass="com.mysql.cj.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/mybatis?characterEncoding=utf8&serverTimezone=UTC"
userId="root"
password="123456">
<property name="nullCatalogMeansCurrent" value="true"/>
</jdbcConnection>
<!-- targetPackage: 包名稱 ( 自定義 ) targetProject :專案路徑 ( 自定義 ) -->
<!-- 定義 model 的包名稱 -->
<javaModelGenerator targetPackage="com.huang.domain" targetProject="src/main/java">
<!-- enableSubPackages: 是否讓 schema 作為包的字尾 -->
<property name="enableSubPackages" value="false" />
<!-- 從資料庫返回的值被清理前後的空格 -->
<property name="trimStrings" value="true" />
</javaModelGenerator>
<!-- 生成對映檔案存放位置 -->
<!-- 配置生成相應的實體 Mapper.xml ,對於 Mapper3.X 我們需要把 type="XMLMAPPER" -->
<!-- targetPackage: 包名稱 ( 自定義 ) targetProject :外匯跟單gendan5.com專案路徑 ( 自定義 ) -->
<sqlMapGenerator targetPackage="com.huang.dao" targetProject="src/main/java">
<property name="enableSubPackages" value="true" />
</sqlMapGenerator>
<!-- 生成 Dao 類存放位置 -->
<!-- 配置生成相應的介面類,對應與 Mapper.xml 中的一系列 CRUD 方法 SQL 語句 -->
<!-- targetPackage: 包名稱 ( 自定義 ) targetProject :專案路徑 ( 自定義 ) -->
<javaClientGenerator targetPackage="com.huang.dao" targetProject="src/main/java" type="XMLMAPPER">
<property name="enableSubPackages" value="true" />
</javaClientGenerator>
<!-- 部門表 -->
<table tableName="dept" domainObjectName="Dept"
enableCountByExample="false"
enableUpdateByExample="false"
enableDeleteByExample="false"
enableSelectByExample="false"
selectByExampleQueryId="false">
</table>
<!-- 商品表 -->
<table tableName="goods" domainObjectName="Goods"
enableCountByExample="false"
enableUpdateByExample="false"
enableDeleteByExample="false"
enableSelectByExample="false"
selectByExampleQueryId="false">
</table>
<!-- 商戶表 -->
<table tableName="sellers" domainObjectName="Sellers"
enableCountByExample="false"
enableUpdateByExample="false"
enableDeleteByExample="false"
enableSelectByExample="false"
selectByExampleQueryId="false">
</table>
</context>
</generatorConfiguration>
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69946337/viewspace-2782776/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- springboot整合mybatis增刪改查(三):mybatis逆向工程Spring BootMyBatis
- springBoot 整合 mybatisSpring BootMyBatis
- Springboot整合MybatisSpring BootMyBatis
- springboot+mybatis整合Spring BootMyBatis
- SpringBoot | 3.2 整合MyBatisSpring BootMyBatis
- Springboot+mybatis 整合Spring BootMyBatis
- SpringBoot整合系列–整合MyBatis-plusSpring BootMyBatis
- springBoot 整合 mybatis+OracleSpring BootMyBatisOracle
- SpringBoot整合Mybatis-PlusSpring BootMyBatis
- springboot專案整合mybatisSpring BootMyBatis
- springboot-整合mybatis,securitySpring BootMyBatis
- springboot整合ES及其基本使用Spring Boot
- mybatis逆向工程和SSM框架整合MyBatisSSM框架
- SpringBoot學習之整合MybatisSpring BootMyBatis
- SpringBoot 實戰 (九) | 整合 MybatisSpring BootMyBatis
- SpringBoot 2.1.1.RELEASE 整合MyBatisSpring BootMyBatis
- SpringBoot | 3.3 整合MyBatis-PlusSpring BootMyBatis
- SpringBoot整合Mybatis+DruidSpring BootMyBatisUI
- SpringBoot--整合Mybatis和RedisSpring BootMyBatisRedis
- 企業 SpringBoot 教程(六)springboot整合mybatisSpring BootMyBatis
- SpringBoot整合Mybatis-Plus(SpringBoot3)Spring BootMyBatis
- SpringBoot第五篇:整合MybatisSpring BootMyBatis
- SpringBoot、MyBatis、Shiro、Thymeleaf整合思路Spring BootMyBatis
- Mybatis 的使用(整合Spring、SpringBoot)MyBatisSpring Boot
- Springboot 整合 Mybatis 的完整 Web 案例Spring BootMyBatisWeb
- SpringBoot整合Mybatis超詳細流程Spring BootMyBatis
- springboot整合mybatis自動生成框架Spring BootMyBatis框架
- 【springboot】學習4:整合JDBC、整合druid、整合mybatis、整合 SpringSecuritySpring BootJDBCUIMyBatisGse
- SpringBoot資料訪問(一) SpringBoot整合MybatisSpring BootMyBatis
- SpringBoot + Mybatis + Redis 整合入門專案Spring BootMyBatisRedis
- SpringBoot系列——MyBatis-Plus整合封裝Spring BootMyBatis封裝
- SpringBoot 整合Mybatis + PageHelper 實現分頁Spring BootMyBatis
- SpringBoot 實戰 (十三) | 整合 MyBatis (XML 版)Spring BootMyBatisXML
- 最簡單的SpringBoot整合MyBatis教程Spring BootMyBatis
- Springboot整合mybatis框架(含例項Demo)Spring BootMyBatis框架
- SpringBoot整合Mybatis多資料來源Spring BootMyBatis
- springboot整合redis及其註解式開發Spring BootRedis
- SpringBoot 整合MyBatis-Plus3.1詳細教程Spring BootMyBatisS3