开发工具:eclipse,依赖环境 :maven
首先在eclipse marketplace中安装mybatis-generator,如图:
安装后需要重启。
新建一个maven项目MybatisGeneratorDemo,pom.xml中添加依赖:
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.26</version> </dependency>项目创建好后,菜单:file->new->other->搜索mybatis,可以看到刚才安装的mybatis-generator,打开Mybatis Generator Configuration File。
选择刚才创建的项目:
我这里已经添加了,所以有个错误提示。
添加完后,项目结构:
打开generatorConfig.xml,开始配置数据库及映射相关,配置详情参考 https://www.jianshu.com/p/e09d2370b796 。
配置后生成项目:
生成后项目结构为:
原文链接:https://www.jianshu.com/p/e09d2370b796
以下是配置文档: