全新的
MyBatis-Plus
3.0 版本基于 JDK8,提供了lambda
形式的调用,所以安装集成 MP3.0 要求如下:
Spring Boot:
1
2
3
4
5<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-boot-starter</artifactId>
<version>3.4.1</version>
</dependency>Spring MVC:
1
2
3
4
5<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus</artifactId>
<version>3.4.1</version>
</dependency>
MyBatis-Plus 代码生成器
1、添加依赖:
MyBatis-Plus 从 3.0.3
之后移除了代码生成器与模板引擎的默认依赖,需要手动添加相关依赖:
- 添加 代码生成器 依赖
1 |
|
添加 模板引擎 依赖: MyBatis-Plus 支持 Velocity(默认)、Freemarker、Beetl
Velocity
1 |
|
Freemarker
1 |
|
Beetl
1 |
|
2、编写配置:参考
创建生成器对象:
1
2// 1、代码生成器
AutoGenerator mpg = new AutoGenerator();
配置 GlobalConfig :
1
2
3
4
5
6
7
8
9
10
11
12// 2、全局配置
GlobalConfig gc = new GlobalConfig();
String projectPath = System.getProperty("user.dir");
log.info(projectPath);
gc.setOutputDir(projectPath+"/src/main/java");
gc.setAuthor("dell");
gc.setOpen(false);
gc.setFileOverride(false); //重新生成时文件是否覆盖
gc.setServiceName("%sService"); //去掉Service接口的首字母I
gc.setIdType(IdType.ID_WORKER_STR); //主键策略
gc.setDateType(DateType.ONLY_DATE); //定义生成的实体类中日期类型
gc.setSwagger2(true); //开启Swagger2模式配置数据源:
1
2
3
4
5
6
7
8// 3、数据源配置
DataSourceConfig dsc = new DataSourceConfig();
dsc.setUrl("jdbc:mysql://192.168.121.152:3306/newbee_mall_db?useUnicode=true&useSSL=false&characterEncoding=utf8");
dsc.setDriverName("com.mysql.cj.jdbc.Driver");
dsc.setUsername("root");
dsc.setPassword("123456");
dsc.setDbType(DbType.MYSQL);
mpg.setDataSource(dsc);包配置:
1
2
3
4
5
6
7
8
9// 4、包配置
PackageConfig pc = new PackageConfig();
// pc.setModuleName("provider"); //模块名
pc.setParent("edu.lsl");
pc.setController("controller");
pc.setEntity("bean");
pc.setService("service");
pc.setMapper("mapper");
mpg.setPackageInfo(pc);策略配置:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17// 5、策略配置
StrategyConfig strategy = new StrategyConfig();
strategy.setNaming(NamingStrategy.underline_to_camel); //数据库表映射到实体的命名策略
strategy.setColumnNaming(NamingStrategy.underline_to_camel); //数据库表字段映射到实体的命名策略
strategy.setEntityLombokModel(true); // lombok 模型 @Accessors(chain = true) setter链式操作
strategy.setRestControllerStyle(true); //restful api风格控制器
strategy.setControllerMappingHyphenStyle(true); //url中驼峰转连字符
// 公共父类
// strategy.setSuperControllerClass("你自己的父类控制器,没有就不用设置!");
// 写于父类中的公共字段
strategy.setSuperEntityColumns("id");
// strategy.setInclude(scanner("表名,多个英文逗号分割").split(","));
strategy.setInclude("tb_newbee_mall_admin_user");
strategy.setControllerMappingHyphenStyle(true);
// strategy.setTablePrefix(pc.getModuleName() + "_"); //生成实体时去掉表前缀
strategy.setTablePrefix("tb_newbee_"); //生成实体时去掉表前缀
mpg.setStrategy(strategy);模板配置:
1
mpg.setTemplateEngine(new FreemarkerTemplateEngine()); // 添加 模板引擎
执行:
1
2// 6、执行
mpg.execute();
3、Demo测试
1 |
|