MybatisPlus怎么生成的mapper.xml
时间: 2024-03-21 18:16:20 浏览: 92
MybatisPlus可以通过自动代码生成器来生成mapper.xml文件。具体步骤如下:
1. 在项目的pom.xml文件中添加MybatisPlus的依赖。
2. 在SpringBoot项目中,可以使用MybatisPlus提供的代码生成器插件来生成mapper.xml文件。在pom.xml文件中添加以下插件依赖:
```xml
<build>
<plugins>
<!--MybatisPlus代码生成器插件-->
<plugin>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-maven-plugin</artifactId>
<version>${mybatis-plus.version}</version>
<executions>
<execution>
<id>mybatis-plus-generator</id>
<phase>package</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
<configuration>
<verbose>true</verbose>
<!--要生成的表名,多个表名用英文逗号分隔-->
<tables>
<table>
<tableName>table_name</tableName>
</table>
</tables>
<!--实体类的包名-->
<packageConfig>
<parent>com.example.demo</parent>
<entity>entity</entity>
</packageConfig>
<!--mapper.xml文件的输出路径-->
<fileOutConfig>
<outputDir>src/main/resources/mapper/</outputDir>
<xmlFileTemplate>templates/mapper.xml.vm</xmlFileTemplate>
</fileOutConfig>
</configuration>
</plugin>
</plugins>
</build>
```
3. 在resources目录下创建templates文件夹,并在文件夹中添加mapper.xml.vm文件,该文件是MybatisPlus提供的默认模板文件。
4. 在IDEA的Terminal中输入以下命令运行代码生成器:
```shell
mvn mybatis-plus:generate
```
5. 运行成功后,就可以在src/main/resources/mapper/目录下找到生成的mapper.xml文件了。
阅读全文