一、创建springboot项目,这里省略,直接看创建好的项目目录
二、pom.xml文件中配置 mybatis-generator-maven<!--mybatis自动生成代码插件--> <plugin> <groupId>org.mybatis.generator</groupId> <artifactId>mybatis-generator-maven-plugin</artifactId> <configuration> <verbose>true</verbose> <overwrite>true</overwrite> </configuration> </plugin>