标签:1.2   weight   sqlmap   har   cte   data   mysq   mave   classpath   
http://blog.csdn.net/itlqi/article/details/49534447
1、新建一个maven项目在pom.xml添加如下:
- <plugins>  
-     <plugin>  
-                 <groupId>org.mybatis.generator</groupId>  
-                 <artifactId>mybatis-generator-maven-plugin</artifactId>  
-                 <version>1.3.2</version>  
-                 <configuration>  
-                     <verbose>false</verbose>  
-                     <overwrite>false</overwrite>  
-                 </configuration>  
-             </plugin>  
-     </plugins>  
 
如果以上插件还无法生成将插件这样添加【如上也可不用删除】
-          <dependency>  
-     <groupId>org.mybatis.generator</groupId>  
-     <artifactId>mybatis-generator-maven-plugin</artifactId>  
-     <version>1.3.2</version>  
- </dependency>  
 
2、在项目src/main/resources 添加generatorConfig.xml文件

generatorConfig.xml 内容:
- <span style="font-size:14px;"><?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:\Eclipse\Repository\mysql\mysql-connector-java\5.1.29\mysql-connector-java-5.1.29.jar" />  
-         <context id="context1" targetRuntime="MyBatis3">  
-         <commentGenerator>   
-         
-         <property name="suppressAllComments" value="true" />   
-         
-       </commentGenerator>   
-         <jdbcConnection driverClass="com.mysql.jdbc.Driver"  
-             connectionURL="jdbc:mysql://localhost:3306/data?useUnicode=true&characterEncoding=UTF-8"  
-             userId="root" password="123456" />  
-         <javaModelGenerator targetPackage="org.share.domain.tree.entity"  
-             targetProject="E:\workspace\share\share-domain\src\main\java" />  
-         <sqlMapGenerator targetPackage="org.share.domain.tree.mapper"  
-             targetProject="E:\workspace\share\share-domain\src\main\java" />  
-         <javaClientGenerator targetPackage="org.share.domain.tree.mapper"  
-             targetProject="E:\workspace\share\share-domain\src\main\java" type="XMLMAPPER" />  
-         
-          <table schema="data" tableName="tree" />  
-           
-     </context>  
- </generatorConfiguration></span>  
 
table其他属性: 
enableCountByExample="false" 
enableUpdateByExample="false" 
enableDeleteByExample="false" 
enableSelectByExample="false" 
selectByExampleQueryId="false" 
schema即为数据库名, tableName为对应的数据库表, domainObjectName是要生成的实体类, 
如果想要mapper配置文件加入sql的where条件查询, 可以将enableCountByExample等设为true, 
这样就会生成一个对应domainObjectName的Example类, enableCountByExample等设为false时, 
就不会生成对应的Example类了. 
3、选择项目中的pom.xml配置文件 右键run --》maven bulid --》在对话框中的Goals 输入mybatis-generator:generate 如图

4、刷新项目src目录就可以看到映射的xml 和接口文件了 哈哈哈  祝你好运

【转载】maven插件mybatis-generator自动生成 (1)
标签:1.2   weight   sqlmap   har   cte   data   mysq   mave   classpath   
原文地址:http://www.cnblogs.com/heng-yan/p/6251552.html