IDEA中mybatis-generator插件的使用

 mybatis-generator插件可自动生成实体类和mapper还有xml配置文件。在IDEA中只需修改插件中的generatorConfig.xml文件,然后运行配置文件就可以得到说需要的类,接口,xml文件。

1.创建Maven(webapp)项目


2.在pom.xml中加入包,以及插件

mysql-connector的坐标

  1. <dependency>
  2. <groupId>mysql groupId>
  3. <artifactId>mysql-connector-java artifactId>
  4. <version>5.1.31 version>
  5. dependency>

插件:放在finalName标签下面,否则插件不会显示,需要自己配置。generatorConfig.xml配置文件的路径要加上。

  1. <plugins>
  2. <plugin>
  3. <groupId>org.mybatis.generator groupId>
  4. <artifactId>mybatis-generator-maven-plugin artifactId>
  5. <version>1.3.2 version>
  6. <configuration>
  7. <configurationFile>src/main/resources/generatorConfig.xml configurationFile>
  8. <verbose>true verbose>
  9. <overwrite>true overwrite>
  10. configuration>
  11. <executions>
  12. <execution>
  13. <id>Generate MyBatis Artifacts id>
  14. <goals>
  15. <goal>generate goal>
  16. goals>
  17. execution>
  18. executions>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.mybatis.generator groupId>
  22. <artifactId>mybatis-generator-core artifactId>
  23. <version>1.3.2 version>
  24. dependency>
  25. dependencies>
  26. plugin>
  27. plugins>

如果在右边可以看到mybatis-generator,说明插件安装好了,紧接着添加及修改配置文件


3.添加generatorConfig.xml(插件对应的配置文件)test-jdbc.properties(数据库相关信息)

test-jdbc.properties

  1. jdbc.driver=com.mysql.jdbc.Driver
  2. jdbc.url=jdbc:mysql://localhost:3306/bookdb
  3. jdbc.username=root
  4. jdbc.password=123456

generatorConfig.xml

  1. xml version="1.0" encoding="UTF-8"?>
  2. PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
  3. "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
  4. <generatorConfiguration>
  5. <properties resource="test-jdbc.properties"/>
  6. <classPathEntry location="C:\Users\GaoHang\.m2\repository\mysql\mysql-connector-java\5.1.31\mysql-connector-java-5.1.31.jar" />
  7. <context id="DB2Tables" targetRuntime="MyBatis3">
  8. <commentGenerator>
  9. <property name="suppressDate" value="true" />
  10. <property name="suppressAllComments" value="true" />
  11. commentGenerator>
  12. <jdbcConnection driverClass="${jdbc.driver}"
  13. connectionURL= "${jdbc.url}" userId= "${jdbc.username}" password= "${jdbc.password}">
  14. jdbcConnection>
  15. <javaTypeResolver>
  16. <property name="forceBigDecimals" value="false" />
  17. javaTypeResolver>
  18. <javaModelGenerator targetPackage="com.test.pojo"
  19. targetProject= "src/main/java">
  20. <property name="enableSubPackages" value="true" />
  21. <property name="trimStrings" value="true" />
  22. javaModelGenerator>
  23. <sqlMapGenerator targetPackage="com.test.dao"
  24. targetProject= "src/main/java">
  25. <property name="enableSubPackages" value="true" />
  26. sqlMapGenerator>
  27. <javaClientGenerator type="XMLMAPPER"
  28. targetPackage= "com.test.dao" targetProject= "src/main/java">
  29. <property name="enableSubPackages" value="true" />
  30. javaClientGenerator>
  31. <table tableName="studentno"
  32. domainObjectName= "StudentNo"
  33. enableCountByExample= "false"
  34. enableUpdateByExample= "false"
  35. enableDeleteByExample= "false"
  36. enableSelectByExample= "false"
  37. selectByExampleQueryId= "false"> table>
  38. <table tableName="classno" domainObjectName="ClassNo"
  39. enableCountByExample= "false" enableUpdateByExample= "false"
  40. enableDeleteByExample= "false" enableSelectByExample= "false"
  41. selectByExampleQueryId= "false"> table>
  42. context>
  43. generatorConfiguration>

只需将test-jdbc.properties文件改成自己数据库对应的位置,generatorConfig.xml更改下面四个位置




4.运行右侧Maven项目中的mybatis-generator


这样就说明自动生成成功了,然后可以加入mybatis包以及mybatis配置文件,在配置文件中注册所需要的Mapper对应的xml文件,就可以使用mybatis了。

你可能感兴趣的:(IDEA中mybatis-generator插件的使用)