在寫代碼過程當中,經常要寫一些簡單的CURD操做,爲了可以把時間用在業務邏輯上,看了Mybatis Generator生成工具,根據官網的文檔,改成適合本身使用的生成器。java
mybatis generator的配置文件 以下:git
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd"> <generatorConfiguration> <!--讀取配置文件--> <properties resource="generator.properties" /> <context id="MySQLContext" targetRuntime="MyBatis3"> <!--設置文件編碼--> <property name="javaFileEncoding" value="UTF-8"/> <!--配置去掉全部生成的註釋--> <commentGenerator> <property name="suppressAllComments" value="true" /> </commentGenerator> <!--設置數據庫鏈接驅動--> <jdbcConnection driverClass="${jdbc.driverClass}" connectionURL="${jdbc.url}" userId="${jdbc.username}" password="${jdbc.password}"> </jdbcConnection> <!--當字段類型是 DECIMAL或者 NUMERIC時,是否強制轉換爲BigDecimal,否的話會自動根據規模的大小選擇合適的類型 --> <javaTypeResolver > <property name="forceBigDecimals" value="false" /> </javaTypeResolver> <!-- 生成模型的包名和位置--> <javaModelGenerator targetPackage="me.xueyao.model" targetProject=".\src\main\java"> <property name="enableSubPackages" value="true" /> <property name="trimStrings" value="true" /> </javaModelGenerator> <!-- 生成映射文件的包名和位置--> <sqlMapGenerator targetPackage="me.xueyao.mapper" targetProject=".\src\main\resources"> <property name="enableSubPackages" value="true" /> </sqlMapGenerator> <!-- 生成DAO的包名和位置--> <javaClientGenerator type="XMLMAPPER" targetPackage="me.xueyao.mapper" targetProject=".\src\main\java"> <property name="enableSubPackages" value="true" /> </javaClientGenerator> <!-- 要生成的表 tableName是數據庫中的表名或視圖名 domainObjectName是實體類名,須要根據本身的需求修改--> <table tableName="candidate" domainObjectName="Candidate" enableCountByExample="false" enableDeleteByExample="false" enableSelectByExample="false" enableUpdateByExample="false"> <generatedKey column="id" sqlStatement="MySql" identity="true" /> </table> </context> </generatorConfiguration>
mybatis generator的執行文件 以下:github
package me.xueyao; import org.mybatis.generator.api.MyBatisGenerator; import org.mybatis.generator.config.Configuration; import org.mybatis.generator.config.xml.ConfigurationParser; import org.mybatis.generator.internal.DefaultShellCallback; import java.io.InputStream; import java.util.ArrayList; import java.util.List; /** * @Description: Mybatis Generator 生成器 * @Author: Simon.Xue * @Date: 2019/1/18 13:44 */ public class Generator { public static void main(String[] args) throws Exception { //警告信息集合 List<String> warnings = new ArrayList<String>(); //讀取生成器的配置文件 InputStream resourceAsStream = Generator.class.getResourceAsStream("/mybatis-generator.xml"); //建立配置解析器 ConfigurationParser configurationParser = new ConfigurationParser(warnings); //解析配置文件 Configuration configuration = configurationParser.parseConfiguration(resourceAsStream); resourceAsStream.close(); //true時,若是有相同的文件則覆蓋文件 DefaultShellCallback defaultShellCallback = new DefaultShellCallback(true); //建立生成器對象 MyBatisGenerator myBatisGenerator = new MyBatisGenerator(configuration, defaultShellCallback, warnings); //執行生成代碼 myBatisGenerator.generate(null); //輸出警告信息 for (String warning : warnings) { System.out.println(warning); } } }
源代碼託管在GitHubsql