SpringBoot 2.4.0 Gradle中使用MyBatis Generator自动生成代码
编者: wRitchie(吴理琪) 来源:http://www.bj9420.com
随着SpringBoot2.4.0的发布,构建工具由Maven转向Gradle,项目采用Grale构建后,MyBatis Generator插件亦需重新折腾,MyBatis Generator是一个mybatis工具项目,用于生成Mybatis的Model、Mapper、Dao持久层的代码。MyBatis Generator提供Maven plugin、Ant task、Java三种方式运行。构建工具采用Gradle,虽然MyBatis Generator没有提供Gradle的插件,但Gradle可以调用Ant任务,因此,Gradle能运行Mybatis Generator。
一、 mybatis-dev.properties配置文件
二、 generatorConfig.xml配置文件
三、 添加依赖, build.gradle配置文件:
1、添加mybatisGenerator
2、添加依赖,注意把前面的compile group改为第一步添加的mybatisGenerator
3、添加任务
四、 运行
1、在Gradle中刷新,点开module下的other里找到mybatisGenarate
2、双击mybatisGenarate,自动生成Model、Mapper、Dao成功:
3、生成代码结构: