Mybatis-plus最新代码生成器(3.5.1+)的使用

本文介绍了如何在最新版本的Mybatis-plus中使用代码生成器,包括引入velocity或freemarker模板依赖、创建构造器类,详细讲解了全局配置GlobalConfig、包配置PackageConfig和策略配置StrategyConfig的设置,以及如何指定生成的包、表及文件覆盖等选项。同时,文章强调了官方文档的重要性,并提供了配置示例和效果图。
摘要由CSDN通过智能技术生成

1.引入依赖:

<!--mybatisPlus-->
<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-boot-starter</artifactId>
    <version>3.4.3.4</version>
</dependency>
<!--mybatis-plus代码生成器-->
<dependency>
    <groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-generator</artifactId>
    <version>3.5.1</version>
</dependency>
<!--velocity模板-->
<dependency>
    <groupId>org.apache.velocity</groupId>
    <artifactId>velocity-engine-core</artifactId>
    <version>2.3</version>
</dependency>
<!--freemarker模板-->
<dependency>
    <groupId>org.freemarker</groupId>
    <artifactId>freemarker</artifactId>
</dependency>
<!--mysql-->
<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <scope>runtime</scope>
</dependency>

解释一下为什么要引两个模板依赖:

?? 因为plus代码生成器需要一个模板引擎,velocity和freemarker任选一个,velocity是生成器中默认使用的,根据你的选择引依赖。

2.写一个构造器类

随便创建一个类:像启动类那样有个psvm能跑就行

public class PracticeApplication {

    public static void main(String[] args) {
        代码生成器。。。。;
    }

}

接下来就是写生成逻辑了,很简单,看官网:

MyBatis-Plus 3.5.1 代码生成器MyBatis-Plus 框架提供的一款代码生成工具,可以帮助开发者快速生成 MyBatis-Plus 的 Mapper 接口及其 XML 映射文件、Service 接口、ServiceImpl 实现类、Entity 实体类等代码。 使用 MyBatis-Plus 代码生成器,可以减轻开发者的工作负担,提高开发效率,避免手写重复性的代码。以下是使用 MyBatis-Plus 代码生成器的步骤: 1. 引入 MyBatis-Plus 依赖 在项目的 pom.xml 文件中,添加 MyBatis-Plus 的依赖: ``` <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus</artifactId> <version>3.5.1</version> </dependency> ``` 2. 配置代码生成器 在项目的配置文件(如 application.yml 或 application.properties)中,添加代码生成器的配置信息,包括数据库连接信息、生成代码的包路径、作者等信息。 ``` mybatis-plus: global-config: db-config: # 数据库配置 url: jdbc:mysql://localhost:3306/mybatis_plus?useUnicode=true&characterEncoding=utf8&serverTimezone=GMT%2B8&useSSL=false&allowPublicKeyRetrieval=true username: root password: 123456 driver-name: com.mysql.cj.jdbc.Driver generator: # 生成代码的包路径 package-name: com.example.mybatisplusdemo # 生成代码的作者 author: example # 开启生成器 enable: true # 开启实体类 Lombok 注解 enable-lombok: true # 开启 Swagger2 注解 enable-swagger: true # 开启 ActiveRecord 模式(生成 ActiveRecord 的实体类和接口) enable-activerecord: true ``` 3. 运行代码生成器 在项目的启动类中,添加以下代码,启动代码生成器: ``` @SpringBootApplication public class MybatisPlusDemoApplication { public static void main(String[] args) { SpringApplication.run(MybatisPlusDemoApplication.class, args); // 启动代码生成器 MybatisPlusGenerator.execute(); } } ``` 4. 查看生成的代码 代码生成器会根据配置信息,自动生成 Mapper 接口及其 XML 映射文件、Service 接口、ServiceImpl 实现类、Entity 实体类等代码,生成的代码位于指定的包路径下。开发者可以在生成的代码的基础上,进行业务代码的开发。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值