博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
逆向工程
阅读量:5035 次
发布时间:2019-06-12

本文共 1922 字,大约阅读时间需要 6 分钟。

1、执行文件MyGenerator.java文件

package com.lbs.Generator;import java.io.File;import java.util.ArrayList;import java.util.List;import org.mybatis.generator.api.MyBatisGenerator;import org.mybatis.generator.config.Configuration;import org.mybatis.generator.config.xml.ConfigurationParser;import org.mybatis.generator.internal.DefaultShellCallback;public class MyGenerator {    public void generate() throws Exception {        List
warnings = new ArrayList
(); boolean overwrite = true; File configFile = new File("G:\\ProjectCode\\workspace-sts-3.9.9.RELEASE\\WebServer\\src\\main\\java\\com\\lbs\\Generator\\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); } public static void main(String[] args) throws Exception { try { MyGenerator myGenerator = new MyGenerator(); myGenerator.generate(); } catch (Exception e) { e.printStackTrace(); } }}

 

  2、XML文件

3、在pom.xml文件中引入的核心包

org.mybatis.generator
mybatis-generator-core
1.3.5

 

转载于:https://www.cnblogs.com/wmm15738807386/p/11226497.html

你可能感兴趣的文章
【java】解析java中的数组
查看>>
Java虚拟机9:垃圾收集(GC)-4(垃圾收集器)
查看>>
Github之协同开发
查看>>
python字典使用
查看>>
使用Adivisor配置增强处理
查看>>
.net 操作MongoDB 基础
查看>>
文本元素
查看>>
用定位实现机器人效果
查看>>
第八周作业
查看>>
unity 字典序列化的问题
查看>>
升级测试(Upgrade Testing)
查看>>
php 连接 memcached 并调用
查看>>
03 Python安装 - 编辑器安装
查看>>
block传值
查看>>
【笔记】js Array.prototype.slice.call(arguments) 将函数的参数转换为数组方法的见解...
查看>>
PHP 天巡机票接口
查看>>
170314、工具:apache httpClient多线程并发情况下安全实用及工具类分享
查看>>
LeetCode:Wildcard Matching
查看>>
160622、详解JavaScript变量提升
查看>>
Redis Sentinel高可用架构
查看>>