IDEA创建插件自动生成entity、mapper.xml、dao文件
目前大多插件总是被和谐,为了生成entity、dao、和映射xml方便,我们在项目中自己添加一个文件,按照实际需求生成需要的文件
1.首先在项目中创建generatorConfiguration.xml
我这是在已有项目的基础上,也可以做一个空的框架,用来专门生成文件,我放在了resource下。
xml代码如下,由于mysql版本是8,所以驱动包要下载对应的,这个可以pom.xml文件中配置,然后从maven取,也可以在网上找资源。
<?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="D:\Work\Tools\invoke\mysql-connector-java-8.0.11.jar"/> <context id="mysql" targetRuntime="MyBatis3"> <commentGenerator> <property name="suppressDate" value="true"/> <!-- 是否去除自动生成的注释 true:是 : false:否 --> <property name="suppressAllComments" value="true"/> </commentGenerator> <!--数据库链接URL,用户名、密码 --> <jdbcConnection driverClass="com.mysql.cj.jdbc.Driver" connectionURL="jdbc:mysql://127.0.0.1:3306/sm?&useSSL=false&useUnicode=true&characterEncoding=utf-8&useLegacyDatetimeCode=false&serverTimezone=Asia/Shanghai" userId="root" password="123456"> </jdbcConnection> <javaTypeResolver> <property name="forceBigDecimals" value="false"/> </javaTypeResolver> <!-- 生成模型的包名和位置--> <javaModelGenerator targetPackage="com.manage.entity" targetProject="src/main/java"> <property name="enableSubPackages" value="true"/> <property name="trimStrings" value="true"/> </javaModelGenerator> <!-- 生成映射文件的包名和位置--> <sqlMapGenerator targetPackage="mapper" targetProject="src/main/resources"> <property name="enableSubPackages" value="true"/> </sqlMapGenerator> <!-- 生成DAO的包名和位置--> <javaClientGenerator type="XMLMAPPER" targetPackage="com.manage.dao" targetProject="src/main/java"> <property name="enableSubPackages" value="true"/> </javaClientGenerator> <!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名--> <table schema="" tableName="SysUser" domainObjectName="SysUser" enableCountByExample="false" enableUpdateByExample="false" enableDeleteByExample="false" enableSelectByExample="false" selectByExampleQueryId="false"></table> </context> </generatorConfiguration>
2.在pom.xml添加依赖,加上如下配置
注意:要和pluginManagement同级,要不然maven窗口找不到这个插件,为方便参考,代码如下:
<plugins> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <version>1.3.1</version> <configuration> <configurationFile>${basedir}/src/main/resources/generator/generatorConfiguration.xml</configurationFile> <overwrite>true</overwrite> <verbose>true</verbose> </configuration> </plugin> </plugins>
创建好了之后我们右键项目,选择【Maven】-->【Reload Project】,这样在右面的Maven窗口就有了这个插件
需要用的包为:mybatis-generator-maven-plugin-1.3.1.jar,如果没有可以点击此链接下载
mybatis-generator-maven-plugin-1.3.1.jar
3.运行插件
选中插件右键选择第二个运行,控制台输出成功信息,然后我们的项目中就有生成好的文件了
至此,插件创建完成,快去试试手吧