题记部分
一、mybatis-generator
1.1、概述
mybatis-generator是一个能快速生成xml、dao接口、实体类、注解类的代码生成器。
官网地址:https://mybatis.org/generator/index.html
1.2、配置方式-1
引入Maven插件依赖
<build>
<plugins>
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactid>mybatis-generator-maven-plugin</artifactid>
<version>1.4.2</version>
<configuration>
<!--是否覆盖generator产生新的文件时,是否覆盖原来已经生成过的文件-->
<overwrite>true</overwrite>
</configuration>
</plugin>
</plugins>
</build>
二、标题
三、标题
— 业精于勤荒于嬉,行成于思毁于随 —
标签:10,generator,pagehelper,mybatis,org,三剑客 From: https://www.cnblogs.com/houhuilinblogs/p/18519854