mybatis-generator-程式碼自動生成器
前言
Mybatis屬於半自動ORM,在使用這個框架中,工作量最大的就是書寫Mapping的對映檔案,由於手動書寫很容易出錯,我們可以利用Mybatis-Generator來幫我們自動生成檔案。
原始碼下載: https://github.com/chenxingxing6/my-mybatis-generator
怎麼操作呢?
1.命令方式
2.maven外掛方式
1.命令方式
java -jar mybatis-generator-core-1.3.2.jar -configfile generatorConfig.xml -overwrite
所以我們要下好mybatis-gengrator-core核心jar包,然後配置好我們自己的generatorConfig.xml
2.maven外掛方式(*)
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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.test</groupId>
<artifactId>generator-test</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.2</version>
<configuration>
<!--配置檔案的位置-->
<configurationFile>src/main/resources/generatorConfig.xml</configurationFile>
<verbose>true</verbose>
<overwrite>true</overwrite>
</configuration>
<executions>
<execution>
<id>Generate MyBatis Artifacts</id>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.3.2-fix</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>
加入mysql驅動jar包
修改generatorConfig.xml配置檔案
修改包名,資料庫…
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
"/Users/cxx/Documents/spring-boot-starter-hello/lib/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<!--mysql 連線資料庫jar 這裡選擇自己本地位置-->
<classPathEntry location="/Users/cxx/Documents/spring-boot-starter-hello/lib/mysql-connector-java-5.1.26.jar" />
<context id="testTables" targetRuntime="MyBatis3">
<commentGenerator type="org.mybatis.generator.internal.MyCommentGenerator">
<!-- 檔案編碼 -->
<property name="javaFileEncoding" value="UTF-8" />
<!-- 忽略所有註解,使用自定義的註解生成 -->
<property name="suppressAllComments" value="true" />
</commentGenerator>
<!--資料庫連線的資訊:驅動類、連線地址、使用者名稱、密碼 -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/mis" userId="root"
password="123456">
</jdbcConnection>
<!-- 配置後tinyint,smallint的對應java型別改為Integer,不需要的話可刪除此配置 -->
<!--<javaTypeResolver type="org.mybatis.generator.internal.types.PandaJavaTypeResolverDefaultImpl"/>-->
<!-- 預設false,把JDBC DECIMAL 和 NUMERIC 型別解析為 Integer,為 true時把JDBC DECIMAL 和
NUMERIC 型別解析為java.math.BigDecimal -->
<javaTypeResolver>
<property name="forceBigDecimals" value="false" />
</javaTypeResolver>
<!-- targetProject:生成PO類的位置 -->
<javaModelGenerator targetPackage="com.dfire.soa.item.bo"
targetProject="src/main/java">
</javaModelGenerator>
<!-- targetProject:mapper對映檔案生成的位置
如果maven工程只是單獨的一個工程,targetProject="src/main/java"
若果maven工程是分模組的工程,targetProject="所屬模組的名稱",例如:
targetProject="ecps-manager-mapper",下同-->
<sqlMapGenerator targetPackage="com.dfire.soa.item.mapper"
targetProject="src/main/java">
<!-- enableSubPackages:是否讓schema作為包的字尾 -->
<property name="enableSubPackages" value="false" />
</sqlMapGenerator>
<!-- targetPackage:mapper介面生成的位置 -->
<javaClientGenerator type="XMLMAPPER"
targetPackage="com.dfire.soa.item.mapper"
targetProject="src/main/java">
<!-- enableSubPackages:是否讓schema作為包的字尾 -->
<property name="enableSubPackages" value="false" />
</javaClientGenerator>
<!-- 指定資料庫表 -->
<table tableName="sales_data_all" domainObjectName="SalesDataAll" enableSelectByExample="false" enableDeleteByExample="false" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByPrimaryKey="false" enableInsert="false" enableUpdateByPrimaryKey="false">
</table>
<!-- <table schema="" tableName="success_killed"></table>-->
</context>
</generatorConfiguration>
自己要怎麼的,可以修改配置檔案,自己修改mybatis-generator-core原始碼,下一篇我們學習如何修改原始碼,生成符合自己想要的程式碼。
相關文章
- beego 程式碼自動生成器Go
- Mybatis自動程式碼生成器的實現MyBatis
- mybatis-generator-修改原始碼生成自己想要的程式碼MyBatis原始碼
- MyBatis Generator 程式碼自動生成器,從此解放你的雙手MyBatis
- 動軟程式碼生成器學習
- 程式碼生成器
- 自動寫程式碼?
- 程式碼生成器,自適應mysql、oracle資料庫MySqlOracle資料庫
- MyBatisPlus效能分析外掛,條件構造器,程式碼自動生成器詳解MyBatis
- Laravel 程式碼生成器Laravel
- SpringBoot程式碼生成器Spring Boot
- nodejs 自動程式碼提示NodeJS
- go模板-程式碼生成器Go
- MyBatis Plus程式碼生成器MyBatis
- Heroku 自動部署 GitHub 程式碼Github
- chagpt自動生成PPT程式碼GPT
- 使用 git 自動部署程式碼Git
- Android JNI 程式碼自動生成Android
- 程式碼自動生成外掛:
- vue 執行程式碼自動啟動Vue行程
- Eclipse點選空格總是自動補全程式碼怎麼辦,如何自動補全程式碼,程式碼提示Eclipse
- Javascript 之《如何自動執行生成器》JavaScript
- jenkins自動釋出java程式碼JenkinsJava
- Visual Studio程式碼去掉自動空格
- webstorm自動格式化程式碼WebORM
- SpringBoot程式碼生成器,從此不用手擼程式碼Spring Boot
- SpringBoot啟動程式碼和自動裝配原始碼分析Spring Boot原始碼
- JNPF低程式碼開發框架程式碼 生成器設計框架
- mybatis_plus程式碼生成器類MyBatis
- MyBatis-Plus之程式碼生成器MyBatis
- Cruddiy:無程式碼Bootstrap CRUD生成器boot
- java程式碼生成器(controller,service,mapper)JavaControllerAPP
- MyBatis程式碼生成器的實用MyBatis
- java 程式碼生成器設計方案Java
- 低程式碼如何推動自動化未來
- webstorm配置Autoprefixer,自動補齊程式碼WebORM
- 自動現代化C++程式碼C++
- vs code 自動調整程式碼格式