首先上下成功后的效果:
配置非常简单,我们是通过maven插件来进行的,一共只需要3步:
第一步添加mysql依赖和mysql的maven插件:
由于是非常简单的spring+mysql的原始项目,我直接上整个pom文件吧:
4.0.0 com.shh.index shh-index 1.0-SNAPSHOT jar org.springframework.boot spring-boot-starter-parent 1.5.3.RELEASE shh-index http://maven.apache.org UTF-8 junit junit 3.8.1 test org.springframework.boot spring-boot-starter-web org.mybatis mybatis 3.3.1 org.mybatis mybatis-spring 1.2.4 org.springframework.boot spring-boot-maven-plugin org.apache.maven.plugins maven-compiler-plugin none org.mybatis.generator mybatis-generator-maven-plugin 1.3.2 true true org.mybatis.generator mybatis-generator-maven-plugin 1.3.2
第二步,配置生成代码的配置文件:
src/main/resources/generatorConfig.xml (默认会自动读取改路径下的这个文件)
这一步里同时还要把mysql-connector-java-5.1.38.jar下载下来放到resources文件夹下。强行凑三步,哈哈。
第三步:运行插件
备注:
如果是eclipse项目则只有第三步的启动插件的方式不一样:
项目 右键--》run as --》 maven bulid --》弹出对话框 --》在goals中输入mybatis-generator:generate 或者 点击select --》选择你的mybatis插件 --》apply --》run