mybatis generator配置,Mybatis自动生成文件配置,Mybatis自动生成实体Bean配置

mybatis generator配置,Mybatis自动生成文件配置,Mybatis自动生成实体Bean配置

==============================

蕃薯耀 2018年3月14日

http://www.cnblogs.com/fanshuyao/

一、使用Maven方式引入Mybatis依赖Jar包(版本号自己改或定义)

  1. <properties>
  2. <spring.version>4.3.13.RELEASE</spring.version>
  3. <mybatis.version>3.4.6</mybatis.version>
  4. <mybatis.spring.version>1.3.1</mybatis.spring.version>
  5. <mybatis.generator.version>1.3.6</mybatis.generator.version>
  6. <junit.version>4.12</junit.version>
  7. </properties>

 

  1. <!-- mybatis-->
  2. <dependency>
  3. <groupId>org.mybatis</groupId>
  4. <artifactId>mybatis</artifactId>
  5. <version>${mybatis.version}</version>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.mybatis</groupId>
  9. <artifactId>mybatis-spring</artifactId>
  10. <version>${mybatis.spring.version}</version>
  11. </dependency>
  12. <dependency>
  13. <groupId>org.mybatis.generator</groupId>
  14. <artifactId>mybatis-generator-core</artifactId>
  15. <version>${mybatis.generator.version}</version>
  16. <scope>provided</scope>
  17. </dependency>

二、加入文件生成xml配置文件

直接在项目文件夹下建立xml配置文件:mybatis-generator.xml,内容如下:

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE generatorConfiguration
  3. PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
  4. "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
  5. <!-- 配置文件信息见:http://www.mybatis.org/generator/configreference/xmlconfig.html -->
  6. <generatorConfiguration>
  7. <!-- 配置数据库信息 -->
  8. <context id="mysql" targetRuntime="MyBatis3">
  9. <commentGenerator>
  10. <!-- 设置不生成注释  suppressAllComments :When the property is true, no comments will be added to any generated element.-->
  11. <property name="suppressAllComments" value="true" />
  12. </commentGenerator>
  13. <jdbcConnection driverClass="com.mysql.jdbc.Driver"
  14. connectionURL="jdbc:mysql://localhost:3306/study?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull"
  15. userId="root"
  16. password="root">
  17. </jdbcConnection>
  18. <javaTypeResolver>
  19. <property name="forceBigDecimals" value="false" />
  20. </javaTypeResolver>
  21. <!-- 指定JavaBean生成的位置,.\src表示直接在项目的src目录下生成 -->
  22. <javaModelGenerator targetPackage="com.lqy.ssm.bean" targetProject=".\src\main\java">
  23. <property name="enableSubPackages" value="true" />
  24. <property name="trimStrings" value="true" />
  25. </javaModelGenerator>
  26. <!-- 指定sql映射文件生成的位置 -->
  27. <sqlMapGenerator targetPackage="mapper"  targetProject=".\src\main\resources">
  28. <property name="enableSubPackages" value="true" />
  29. </sqlMapGenerator>
  30. <!-- 指定dao接口生成的位置 -->
  31. <javaClientGenerator type="XMLMAPPER" targetPackage="com.lqy.ssm.dao"  targetProject=".\src\main\java">
  32. <property name="enableSubPackages" value="true" />
  33. </javaClientGenerator>
  34. <!-- 指定每个table表生成的策略 -->
  35. <!-- domainObjectName可省略 -->
  36. <table tableName="user" domainObjectName="User"
  37. enableSelectByExample="false" enableDeleteByExample="false" enableCountByExample="false" enableUpdateByExample="false"></table>
  38. <table tableName="user_ext"
  39. enableSelectByExample="false" enableDeleteByExample="false" enableCountByExample="false" enableUpdateByExample="false"></table>
  40. </context>
  41. </generatorConfiguration>

mybatis generator配置,Mybatis自动生成文件配置,Mybatis自动生成实体Bean配置

把数据库连接信息修改为自己的数据库连接。

三、创建生成文件的代码类:MybatisGenerator.java,内容如下:

官网代码见:http://www.mybatis.org/generator/running/runningWithJava.html

  1. import java.io.File;
  2. import java.util.ArrayList;
  3. import java.util.List;
  4. import org.mybatis.generator.api.MyBatisGenerator;
  5. import org.mybatis.generator.config.Configuration;
  6. import org.mybatis.generator.config.xml.ConfigurationParser;
  7. import org.mybatis.generator.internal.DefaultShellCallback;
  8. public class MybatisGenerator {
  9. public static void main(String[] args) throws Exception {
  10. List<String> warnings = new ArrayList<String>();
  11. boolean overwrite = true;
  12. File configFile = new File("mybatis-generator.xml");
  13. ConfigurationParser cp = new ConfigurationParser(warnings);
  14. Configuration config = cp.parseConfiguration(configFile);
  15. DefaultShellCallback callback = new DefaultShellCallback(overwrite);
  16. MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings);
  17. myBatisGenerator.generate(null);
  18. }
  19. }

其中File configFile = new File("mybatis-generator.xml");就是读取自己的配置文件,如果命名不一致,需要改为一致。

mybatis generator配置,Mybatis自动生成文件配置,Mybatis自动生成实体Bean配置

四、最后运行MybatisGenerator方法生成文件,然后F5刷新项目,文件就直接生成。

==============================

蕃薯耀 2018年3月14日

http://www.cnblogs.com/fanshuyao/

上一篇:mybatis Generator生成代码及使用方式


下一篇:给Array添加删除重复元素函数