一、MyBatis Generator 简介
官网的MyBatis Generator使用介绍,请点击下面的链接:
链接
MyBatis Generator 生成的文件包含三类:
(1)Model实体文件,一个数据库表对应生成一个 Model 实体;
(2)Mapper接口文件,数据数操作方法都在此接口中定义;
(3)Mapper XML配置文件
二、使用步骤
1.引入MyBatis Generator相关依赖
在pom.xml文件添加如下依赖:
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.3</version>
</dependency>
<dependency>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-core</artifactId>
<version>1.3.7</version>
</dependency>
2.配置generatorConfig.xml文件
文章来源:https://www.toymoban.com/news/detail-623408.html
代码如下(示例):文章来源地址https://www.toymoban.com/news/detail-623408.html
<?xml version="1.0" encoding
到了这里,关于mybatis-generator代码生成器的使用与配置的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!