在maven项目中使用mybatis-generator-maven-plugin生成mybatis代码

项目整体的目录结构如下:

在maven项目中使用mybatis-generator-maven-plugin生成mybatis代码

pom.xml如下:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  .......
<build>
<finalName>xxxxxx</finalName>
<plugins>
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.2</version>
<configuration>
<verbose>true</verbose>
<overwrite>true</overwrite>
</configuration>
</plugin>
</plugins>
</build>
</project>

在项目上右键》Run as》Maven build...

在maven项目中使用mybatis-generator-maven-plugin生成mybatis代码

在弹出的窗的goals中输入mybatis-generator:generate ,然后再点击run既可

在maven项目中使用mybatis-generator-maven-plugin生成mybatis代码

上一篇:解释一下什么是前后端分离的核心 JWT


下一篇:mysql point类型的简单使用