mybatisplus自动生成mapper
时间: 2023-12-05 18:41:36 浏览: 137
根据提供的引用内容,我们可以使用Mybatis-plus的自动代码生成器来生成Mapper接口和XML文件。具体步骤如下:
1.在pom.xml文件中添加Mybatis-plus的依赖:
```xml
<dependency>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus</artifactId>
<version>3.4.2</version>
</dependency>
```
2.在application.yml文件中配置数据源和Mybatis-plus的相关配置:
```yaml
spring:
datasource:
url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8
username: root
password: root
driver-class-name: com.mysql.cj.jdbc.Driver
mybatis-plus:
mapper-locations: classpath:/mapper/*.xml
type-aliases-package: com.example.demo.entity
```
3.在代码中使用Mybatis-plus的代码生成器来生成Mapper接口和XML文件:
```java
public class CodeGenerator {
public static void main(String[] args) {
// 数据源配置
DataSourceConfig dataSourceConfig = new DataSourceConfig.Builder(
"jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8",
"root",
"root")
.driver("com.mysql.cj.jdbc.Driver")
.build();
// 全局配置
GlobalConfig globalConfig = new GlobalConfig.Builder()
.outputDir(System.getProperty("user.dir") + "/src/main/java")
.author("your name")
.openDir(false)
.fileOverride(true)
.build();
// 策略配置
StrategyConfig strategyConfig = new StrategyConfig.Builder()
.addInclude("table_name") // 要生成的表名
.build();
// 包名配置
PackageConfig packageConfig = new PackageConfig.Builder()
.parent("com.example.demo")
.entity("entity")
.mapper("mapper")
.service("service")
.serviceImpl("service.impl")
.controller("controller")
.build();
// 代码生成器
AutoGenerator autoGenerator = new AutoGenerator(dataSourceConfig)
.global(globalConfig)
.strategy(strategyConfig)
.packageInfo(packageConfig);
// 执行生成代码
autoGenerator.execute();
}
}
```
执行以上代码后,Mybatis-plus会自动生成Mapper接口和XML文件,并放置在指定的包路径下。
阅读全文