Could not find goal ‘generator‘ in plugin org.mybatis.generator

官方文档参考:

MyBatis Generator Core -- Running MyBatis Generator With Maven

java 复制代码
mysql 中数据表创建后,使用BGM 逆向生成mybatis 相关文件

执行命令:
mvn mybatis-generator:generator

如果报错如下:
[ERROR] Could not find goal 'generator' in plugin org.mybatis.generator:mybatis-generator-maven-plugin:1.3.7 among available goals generate, help -> [Help 1]


需要更换如下命令 
项目下执行:
mvn -Dmybatis.generator.overwrite=true mybatis-generator:generate

过程log:
...
[INFO] Generating Example class for table tfts_tcdb_nre
[INFO] Generating Record class for table tfts_tcdb_nre
[INFO] Generating Mapper Interface for table tfts_tcdb_nre
[INFO] Generating SQL Map for table tfts_tcdb_nre
...
[INFO] Saving file TftsTcdbNreMapper.xml  // 生成于 ~/src/resource/.../mapper
....
[INFO] Saving file TftsTcdbNreExample.java  // 生成于 ~/src/main/.../po
[INFO] Saving file TftsTcdbNre.java  // 生成于 ~/src/main/.../po
[INFO] Saving file TftsTcdbNreMapper.java  // 生成于 ~/src/main/.../mapper
.....
相关推荐
我是zxb9 分钟前
EasyExcel:快速读写Excel的工具类
数据库·oracle·excel
代码不停17 分钟前
MySQL联合查询
java·数据库·mysql
nightunderblackcat19 分钟前
新手向:C语言、Java、Python 的选择与未来指南
java·c语言·python
纯真时光22 分钟前
Maven高级
java
沐浴露z31 分钟前
Redis内存回收:过期策略与淘汰策略
数据库·redis·缓存
宴之敖者、33 分钟前
MySQL——数据库基础
数据库·mysql
大白同学42137 分钟前
【C++】C++11介绍(Ⅱ)
开发语言·c++
你怎么知道我是队长1 小时前
C语言---存储类
c语言·开发语言
XIAOYU6720131 小时前
金融数学专业需要学哪些数学和编程内容?
开发语言·matlab·金融
油炸自行车1 小时前
【Qt】编写Qt自定义Ui控件步骤
开发语言·c++·qt·ui·自定义ui控件·qt4 自定义ui控件