第一种方式:运用逆向工程的配件 a>先把pom.xml的依赖加载上(springboot-rz19\resource)
4.0.0 com.itqf mybatis-generator 1.0-SNAPSHOT org.mybatis.generator mybatis-generator-core 1.3.2 org.mybatis.generator mybatis-generator-maven-plugin 1.3.2 mysql mysql-connector-java 5.1.45 ${basedir}/src/main/resources/generatorConfig.xml true
c>运行打开maven projects找到下面鼠标点击的地方右键run maven build记住只能点击一次
, 第二中方式:不用pom.xml的方式:直接把generatorCongfig.xml放在resources中,代码在上面
a>写一个测试类
public class Testgenerator { public static void main(String[] args) throws Exception { Listwarnings = new ArrayList (); boolean overwrite = true; File configFile = new File("src/main/resources/generatorConfig.xml"); ConfigurationParser cp = new ConfigurationParser(warnings); Configuration config = cp.parseConfiguration(configFile); DefaultShellCallback callback = new DefaultShellCallback(overwrite); MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings); myBatisGenerator.generate(null); System.out.println("success"); }
b>直接运行上面的代码即可
注意:如果要反复使用,一定要把之前生成的代码全部删除干净