那有什么天生如此,只是我们天天坚持。

使用Mybatis Generator 整合到Idea中 自动生成代码


1. 配置Maven pom.xml 文件

  1. <build>
  2. <plugins>
  3. <plugin>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-maven-plugin</artifactId>
  6. </plugin>
  7. <plugin>
  8. <groupId>org.mybatis.generator</groupId>
  9. <artifactId>mybatis-generator-maven-plugin</artifactId>
  10. <version>1.3.2</version>
  11. <configuration>
  12. <configurationFile>${basedir}/src/main/resources/generator/generatorConfig.xml</configurationFile>
  13. <overwrite>true</overwrite>
  14. <verbose>true</verbose>
  15. </configuration>
  16. </plugin>
  17. </plugins>
  18. </build>

配置好Maven插件,下面需要配置插件需要配置文件

2.在maven项目下的src/main/resources 目录下建立名为 Maven的项目配置文件

存放路径如下图:generatorConfig.xml和generator.properties配置文件,和pom文件中地址对应
使用MybatisGenerator 整合到Idea中 自动生成代码 - 图1

generatorConfig.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. <generatorConfiguration>
  6. <!-- 数据库驱动:选择你的本地硬盘上面的数据库驱动包-->
  7. <classPathEntry location="E:\developer\mybatis-generator-core-1.3.2\lib\mysql-connector-java-5.1.25-bin.jar"/>
  8. <context id="DB2Tables" targetRuntime="MyBatis3">
  9. <commentGenerator>
  10. <property name="suppressDate" value="true"/>
  11. <!-- 是否去除自动生成的注释 true:是 : false:否 -->
  12. <property name="suppressAllComments" value="true"/>
  13. </commentGenerator>
  14. <!--数据库链接URL,用户名、密码 -->
  15. <jdbcConnection driverClass="com.mysql.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1/mytest" userId="root" password="root">
  16. </jdbcConnection>
  17. <javaTypeResolver>
  18. <property name="forceBigDecimals" value="false"/>
  19. </javaTypeResolver>
  20. <!-- 生成模型的包名和位置-->
  21. <javaModelGenerator targetPackage="main.java.com.winter.model" targetProject="src">
  22. <property name="enableSubPackages" value="true"/>
  23. <property name="trimStrings" value="true"/>
  24. </javaModelGenerator>
  25. <!-- 生成映射文件的包名和位置-->
  26. <sqlMapGenerator targetPackage="main.resources.mapping" targetProject="src">
  27. <property name="enableSubPackages" value="true"/>
  28. </sqlMapGenerator>
  29. <!-- 生成DAO的包名和位置-->
  30. <javaClientGenerator type="XMLMAPPER" targetPackage="main.java.com.winter.mapper" targetProject="src">
  31. <property name="enableSubPackages" value="true"/>
  32. </javaClientGenerator>
  33. <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
  34. <table tableName="t_user" domainObjectName="User" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table>
  35. </context>
  36. </generatorConfiguration>

注意事项
使用MybatisGenerator 整合到Idea中 自动生成代码 - 图2
可能会出现无法访问的异常:
解决办法:下载mybatis-generator-config_1_0.dtd文件放在本地,此处写本地路径
在文章最后会有下在地址,:
使用MybatisGenerator 整合到Idea中 自动生成代码 - 图3
生成文件的路径要写全路径名targetPackage="main.java.com.winter.mapper" 并且要已经创建。

构建

  1. 1. `点击run-Edit Configurations`

使用MybatisGenerator 整合到Idea中 自动生成代码 - 图4

  1. 2. 添加配置

使用MybatisGenerator 整合到Idea中 自动生成代码 - 图5
mybatis-generator:generate -e
后面带-e是有log打印 ,不带没有。

运行

使用MybatisGenerator 整合到Idea中 自动生成代码 - 图6

后面

使用MybatisGenerator 整合到Idea中 自动生成代码 - 图7
我们还需要修改有点东西,因为生成的类中的路径写了全路径,所以我们要把前面多余的删掉:
使用MybatisGenerator 整合到Idea中 自动生成代码 - 图8
使用MybatisGenerator 整合到Idea中 自动生成代码 - 图9
对你有帮助就点个赞呗,又不会怀孕。
下载地址:
链接:http://pan.baidu.com/s/1bptrqGJ 密码:lnp1