IDEA使用Mybatis Generator自动生成部分代码
说明:使用Mybatis Generator代码生成配置,简单生成部分后端代码,包括(实体类,Mapper、Mapper.xml文件)
一、生成maven项目
二、编辑pom.xml文件,添加所需要的依赖
build中configurationFile可以不加,此路径为生产代码的配置文件路径。
三、添加generatorConfig.xml配置文件
在项目中找到文件夹src/resources添加generatorConfig.xml配置文件,以下以Mac本为模版操作:
<?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>
<!-- 数据库驱动:选择我们的本地硬盘上面的数据库驱动包 ,我这里放在C盘-->
<classPathEntry location="/Users/bmht/.m2/repository/mysql/mysql-connector-java/8.0.19/mysql-connector-java-8.0.19.jar"/>
<context id="DB2Tables" targetRuntime="MyBatis3">
<!-- 防止生产代码注释过多,添加去除注释的配置 -->
<commentGenerator>
<property name="suppressDate" value="true"/>
<property name="suppressAllComments" value="true"/>
</commentGenerator>
<!--数据库连接驱动类,URL,用户名、密码 -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://localhost:3306/system"
userId="root"
password="zjb1988zjb">
</jdbcConnection>
<javaTypeResolver>
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<!-- 生成(实体)模型的包名和位置-->
<javaModelGenerator targetPackage="com.zjb.cloud.entity" targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!-- 生成XML映射文件的包名和位置-->
<sqlMapGenerator targetPackage="mapper" targetProject="src/main/resources">
<property name="enableSubPackages" value="true"/>
</sqlMapGenerator>
<!-- 生成DAO接口的包名和位置-->
<javaClientGenerator type="XMLMAPPER" targetPackage="com.zjb.cloud.mapper" targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
</javaClientGenerator>
<!-- 要生成的表 tableName是数据库中的表名或视图名 domainObjectName是实体类名-->
<table tableName="sys_user" domainObjectName="SysUser"
enableCountByExample="false"
enableUpdateByExample="false"
enableDeleteByExample="false"
enableSelectByExample="false"
selectByExampleQueryId="false"></table>
</context>
</generatorConfiguration>
classPathEntry的路径为本地电脑路径,window系统中可以讲classPathEntry中的location替换为硬盘下的mysql驱动地址。
四、生成代码
找到IDEA右侧Maven,在项目中找到mabatis-genertaor:generator 点击右键 Run Maven Build 生成代码。
参考文件:
https://blog.csdn.net/qq_36356379/article/details/103476325