IDEA中使⽤MybatisGenerator⾃动⽣成数据库持久层相应的
代码
mysql是干啥用的当项⽬中我们使⽤Mybatis作为数据库持久层框架时,Mybatis的XML配置以及对应的实体类以及Mapper类的创建会占⽤我们⼤量的时间,如果我们在这上⾯耗费太多的时间就太浪费了。官⽅给我们提供了Mybatis Generator⼯具,只需要简单的配置,就能够⾃动为我们⽣成简单的CURD对应XML配置、数据库表对应的实体类以及Mapper类,把我们从简单重复的⼯作中解放出来,专注于业务的开发。
MyBatis GeneratorXML配置
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE generatorConfiguration
PUBLIC "-////DTD MyBatis Generator Configuration 1.0//EN"
"/dtd/mybatis-generator-config_1_0.dtd">
<generatorConfiguration>
<!-- 配置⽂档 /generator/configreference/xmlconfig.html -->
<properties resource="application.properties"/>
<!--defaultModelType="flat" 主键和blob等全部字段放⼊到⼀个对象中 -->
<context id="sql" targetRuntime="MyBatis3Simple" defaultModelType="flat">
<property name="autoDelimitKeywords" value="true"/>
<property name="beginningDelimiter" value="`"/>
<property name="endingDelimiter" value="`"/>
<property name="javaFileEncoding" value="utf-8"/>
<!-- ⽣成的POJO实现java.io.Serializable接⼝ -->
<plugin type="ator.plugins.SerializablePlugin"/>
<plugin type="ator.plugins.ToStringPlugin"/>
<!-- 注释 -->
<commentGenerator>
<!-- 是否取消注释 -->
<property name="suppressAllComments" value="false"/>
<!-- ⽣成注释是否取消时间戳-->
<property name="suppressDate" value="false"/>
<!-- 是否将数据库中表的字段描述信息添加到注释 -->
<property name="addRemarkComments" value="true"/>
</commentGenerator>
<!--数据库链接地址账号密码-->
<jdbcConnection driverClass="${spring.datasource.driver-class-name}"
connectionURL="${spring.datasource.url}"
userId="${spring.datasource.username}"
password="${spring.datasource.password}">
<!--下⾯的参数mysql-connector-java版本不兼容 -->
<property name="nullCatalogMeansCurrent" value="true"/>
</jdbcConnection>
<!-- 类型转换 -->
<javaTypeResolver>
<!-- 是否使⽤bigDecimal, false可⾃动转化以下类型(Long, Integer, Short, etc.) -->
<property name="forceBigDecimals" value="false"/>
</javaTypeResolver>
<!--⽣成Model类存放位置-->
<javaModelGenerator targetPackage="ity" targetProject="src/main/java">
<property name="enableSubPackages" value="true"/>
<property name="trimStrings" value="true"/>
</javaModelGenerator>
<!-- ⽣成mapxml⽂件 -->
<sqlMapGenerator targetPackage="mapper" targetProject="src/main/resources/mybatis">
<property name="enableSubPackages" value="false"/>
<property name="enableSubPackages" value="false"/>
</sqlMapGenerator>
<!-- ⽣成mapxml对应client,也就是接⼝dao -->
属性是什么意思啊
<javaClientGenerator targetPackage="batis-generator.mapper" targetProject="src/main/java" type="XMLMAPPER">            <property name="enableSubPackages" value="false"/>
</javaClientGenerator>
<!-- table可以有多个,每个数据库中的表都可以写⼀个table,tableName表⽰要匹配的数据库表-->
<table tableName="user">
cp汇编语言是一种
<!-- 数据库表主键 -->
<generatedKey column="id" sqlStatement="MySql" identity="true"/>
</table>
<table tableName="role">
<!-- 数据库表主键 -->
<generatedKey column="id" sqlStatement="MySql" identity="true"/>
</table>
<table tableName="user_role">
<!-- 数据库表主键 -->
<generatedKey column="id" sqlStatement="MySql" identity="true"/>
</table>
</context>
</generatorConfiguration>
字符串长度和占用内存字节
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="/POM/4.0.0"
xmlns:xsi="/2001/XMLSchema-instance"
xsi:schemaLocation="/POM/4.0.0 /xsd/maven-4.0.0.xsd">idea配置artifacts
<modelVersion>4.0.0</modelVersion>
<groupId>com.flyduck</groupId>
<artifactId>mybatis-generator</artifactId>
<version>1.0-SNAPSHOT</version>
<name>mybatis-generator</name>
<description>mybatis-generator使⽤Demo</description>
<build>
<plugins>
<plugin>
<groupId&ator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.4.0</version>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.16</version>
</dependency>
</dependencies>
<executions>
<execution>
java字符数组初始化<id>Generate MyBatis Artifacts</id>
<!--避免项⽬package或者install时会⾃动执⾏ mybatis-generator:generate 命令-->
<!--<phase>package</phase>-->
<phase>deploy</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- If true, then MBG will write progress messages to the build log.-->
<verbose>true</verbose>
<!-- 是否覆盖,true表⽰会替换⽣成的JAVA⽂件,false则不覆盖 -->
<overwrite>false</overwrite>
<configurationFile>src/main/resources/l</configurationFile>
</configuration>
</plugin>
</plugins>
</build>
</project>
运⾏Mybatis Generator
在IDEA项⽬中的Plugins中点击mybatis-generator:generate运⾏⽣成mybatis对应的数据库持久层代码。
⽰例代码中,执⾏mybatis generator后会⾃动⽣成entity、mapper、以及xml代码,如下图所⽰:
总结

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。