大道至简,知易行难
广阔天地,大有作为

Mybatis Generator插件的安装与使用

下面,以STS(Spring Tool Suite)为例介绍Mybatis Generator插件的安装与使用。

一、Mybatis Generator插件的安装
点击菜单,“Help–>Eclipse Marketplace”打开市场,并在其中搜索“mybatis”,找到“Mybatis Generator”并完成安装(要离线安装的话请自行百度吧):

通过Eclipse Market安装Mybatis Generator插件

通过Eclipse Market安装Mybatis Generator插件

二、Mybatis Generator插件的使用(生成配置文件)
点击菜单,“New–>Other”,找到“Mybatis Generator Configuration File”:

选择Mybatis Generator Configuration File

选择Mybatis Generator Configuration File

点击Next,选择将文件保存到哪个项目的哪个路径中;点击Finish后就会在相应项目的路径下生成配置文件(默认的是generatorConfig.xml):

生成Mybatis Generator Configuration File

生成Mybatis Generator Configuration File

注意:generatorConfig.xml所在的项目中需要包含访问数据库相关的jar包(如JDBC Driver类依赖的jar包)。

三、Mybatis Generator插件的使用(修改配置文件)
接下来,我们需要根据具体的情况修改配置文件:

修改Mybatis Generator Configuration File

修改Mybatis Generator Configuration File

需要注意,targetProject所指向的路径必须是已存在的,否则会报WARNING并且不会生成代码:

targetProject的路径需要是已存在的

targetProject的路径需要是已存在的

以下是对该配置文件一个比较全的描述,我们通常只需要关注常用的一些配置即可;如果要具体地学习,可以参见官网链接http://www.mybatis.org/generator/configreference/xmlconfig.html。

四、Mybatis Generator插件的使用(生成代码)
在generatorConfig.xml上点击右键,然后“Run As–>Run MyBatis Generator”生成代码:

使用Mybatis Generator生成代码

使用Mybatis Generator生成代码

注意观察console的日志输出,若无问题,就可以在配置的路径下看到生成的Java代码及Mapper文件了。

参考资料:
1、http://www.mybatis.org/generator/configreference/xmlconfig.html
2、《Mybatis Generator最完整配置详解》,https://www.jianshu.com/p/e09d2370b796

转载时请保留出处,违法转载追究到底:进城务工人员小梅 » Mybatis Generator插件的安装与使用

分享到:更多 ()

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址