在Intellij idea下,沒有學習Maven的狀況下使用Mybatis的逆向工程好像有點複雜,資料太少了…找到的資料好像也行不通…java
因而學完Maven以後,我就再來更新Idea下使用Mybatis的逆向工程配置…mysql
借鑑博文:http://blog.csdn.net/for_my_life/article/details/51228098sql
向該工程添加逆向工程插件..apache
<?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>asdf</groupId> <artifactId>asdf</artifactId> <version>1.0-SNAPSHOT</version> <build> <finalName>zhongfucheng</finalName> <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> </project>
<?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="conn.properties" /> --> <!-- 處理1,這裏的jar包位置可能須要修改 --> <classPathEntry location="C:\mybatisMaven\lib\mysql-connector-java-5.1.7-bin.jar"/> <!-- 指定運行環境是mybatis3的版本 --> <context id="testTables" targetRuntime="MyBatis3"> <commentGenerator> <!-- 是否取消註釋 --> <property name="suppressAllComments" value="true" /> <!-- 是否生成註釋代時間戳 --> <property name="suppressDate" value="true" /> </commentGenerator> <!-- 處理2 jdbc 鏈接信息,看看庫是否存在 --> <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://localhost:3306/scm?useUnicode=true&characterEncoding=UTF-8" userId="root" password="root"> </jdbcConnection> <!--處理3 targetPackage指定模型在生成在哪一個包 ,targetProject指定項目的src,--> <javaModelGenerator targetPackage="zhongfucheng.entity" targetProject="src/main/java"> <!-- 去除字段先後空格 --> <property name="trimStrings" value="false" /> </javaModelGenerator> <!--處理4 配置SQL映射文件生成信息 --> <sqlMapGenerator targetPackage="zhongfucheng.dao" targetProject="src/main/java" /> <!-- 處理5 配置dao接口生成信息--> <javaClientGenerator type="XMLMAPPER" targetPackage="zhongfucheng.dao" targetProject="src/main/java" /> <table tableName="account" domainObjectName="Account"/> <table tableName="supplier" domainObjectName="Supplier"/> </context> </generatorConfiguration>
若是對咱們上面generatorConfig.xml配置的包信息不清楚的話,那麼能夠看一下咱們的完整項目結構圖…markdown
由於咱們在Idea下是不用寫對應的工程名字的,而在eclipse是有工程名字的。mybatis