我們都知道現在的項目下很多的實體類的屬性比較多,自己手動寫的話相當的浪費時間,所以下面介紹如果自動生成實體類,以及接口層的幾個免費方法和對應的mapper文件,話不多說,上代碼:
1:首先肯定是構建項目,new一個maven項目,打開pom文件
<build>
<plugins>
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.2</version>
<configuration>
<verbose>true</verbose>
<overwrite>true</overwrite>
</configuration>
</plugin>
</plugins>
</build>
在pom文件中添加插件
2:在src/main/resources下加入generateConfig.xml 代碼:
其中generateConfig.xml文件通過右擊項目/new/other/找到mybatis/點開選中bybatis generator Configuration file /Next/finish即可生成
<?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> <!--數據庫驅動路徑 --> <classPathEntry location="E:\CodeExamples\ssm20171129\WebContent\WEB-INF\lib\ojdbc6.jar" /> //這個是數據庫的驅動包的完成路徑oracle就是oracle的驅動包,反之,就用mysql的驅動包 <context id="DB2Tables" targetRuntime="MyBatis3"> <commentGenerator> <property name="suppressAllComments" value="true" /> </commentGenerator> <jdbcConnection driverClass="oracle.jdbc.driver.OracleDriver" connectionURL="jdbc:oracle:thin:@localhost:1521:orcl" //這是連接數據庫的相關信息,若用mysql數據庫用mysql的連接信息即可 userId="scott" password="tiger"> </jdbcConnection> <javaTypeResolver> <property name="forceBigDecimals" value="false" /> </javaTypeResolver> <!--域模型層,生成的目標包,項目目標源文件 --> <javaModelGenerator targetPackage="com.transmateSchool.www.domain" targetProject="src/main/java"> <property name="enableSubPackages" value="true" /> <property name="trimStrings" value="true" /> </javaModelGenerator> <!--XML映射文件,生成的位置(目標包),源代碼文件夾 --> <sqlMapGenerator targetPackage="sqlmap" targetProject="src/main/resources"> <property name="enableSubPackages" value="true" /> </sqlMapGenerator> <!--XML對應的Mapper類 --> <javaClientGenerator type="XMLMAPPER" targetPackage="com.mybatis.mapper" targetProject="src/main/java"> <property name="enableSubPackages" value="true" /> </javaClientGenerator> <!--下面是數據庫表名和項目中需要生成類的名稱,建議和數據庫保持一致,如果有多個表,添加多個節點即可 --> <table tableName="emp" domainObjectName="emp" enableCountByExample="false" enableSelectByExample="false" enableUpdateByExample="false" enableDeleteByExample="false"> </table> <table tableName="dept" domainObjectName="dept" enableCountByExample="false" enableSelectByExample="false" enableUpdateByExample="false" enableDeleteByExample="false"> </table> </context> </generatorConfiguration>
3:右擊項目/run as /maven build/ 在goals中輸入mybatis-generator:generate /apply /run即可
