在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...

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

原文地址:https://www.cnblogs.com/liaojie970/p/5563733.html