资源简介
文件是我优化过的代码自动生成工具,相关教程可以查看我的博客https://blog.csdn.net/qq_25814003/article/details/83062246

代码片段和文件信息
package com.eoma.autocoding;
import com.eoma.autocoding.common.Column;
import com.eoma.autocoding.common.Table;
import com.eoma.autocoding.utils.CamelCaseUtils;
import com.eoma.autocoding.utils.FileHelper;
import freemarker.template.Configuration;
import freemarker.template.Template;
import org.apache.log4j.Logger;
import java.io.*;
import java.sql.Connection;
import java.sql.DatabasemetaData;
import java.sql.ResultSet;
import java.text.SimpleDateFormat;
import java.util.*;
public class Generator {
private Logger logger = Logger.getLogger(this.getClass());
private Properties properties = null;
public Generator() throws Exception {
properties = new Properties();
String fileDir = this.getClass().getClassLoader().getResource(“generator.xml“).getFile();
properties.loadFromxml(new FileInputStream(fileDir));
}
public Table parseTable(String tableName) throws Exception {
String driverName = properties.getProperty(“jdbc.driver“);
String userName = properties.getProperty(“jdbc.username“);
String userPwd = properties.getProperty(“jdbc.password“);
String dbURL = properties.getProperty(“jdbc.url“);
String catalog = properties.getProperty(“jdbc.catalog“);
String schema = properties.getProperty(“jdbc.schema“);
schema = schema == null ? “%“ : schema;
String column = “%“;
logger.debug(“driver>>“+driverName);
logger.debug(“url>>“+dbURL);
logger.debug(“name>>“+userName);
logger.debug(“password>>“+userPwd);
logger.debug(“catalog>>“+catalog);
logger.debug(“schema>>“+schema);
Class.forName(driverName);
Connection conn = java.sql.DriverManager.getConnection(dbURL userName userPwd);
DatabasemetaData dmd = conn.getmetaData();
ResultSet rs = dmd.getColumns(catalog schema tableName column);
List columns = new ArrayList();
while (rs.next()) {
Column c = new Column();
c.setLabel(rs.getString(“REMARKS“));
String name = rs.getString(“COLUMN_NAME“);
c.setName(CamelCaseUtils.toCamelCase(name));
c.setDbName(name);
String dbType = rs.getString(“TYPE_NAME“);
int columnSize = rs.getInt(“COLUMN_SIZE“);
if(dbType.equals(“TINYINT“)&&columnSize>1){
c.setType(“Integer“);
}else if(dbType.equals(“TINYINT“)&&columnSize==1){
c.setType(“Boolean“);
}else{
String type = properties.getProperty(dbType);
c.setType(type == null ? “String“ : type);
}
c.setDbType(dbType);
c.setLength(rs.getInt(“COLUMN_SIZE“));
c.setDecimalDigits(rs.getInt(“DECIMAL_DIGITS“));
c.setNullable(rs.getBoolean(“NULLABLE“));
columns.add(c);
}
List pkColumns = new ArrayList();
ResultSet pkrs = dmd.getPrimaryKeys(catalog schema tableName);
while(pkrs.next()){
Column c = new Column();
String name = pkrs.getString(“COLUMN_NAME“);
c.setName(CamelCaseUtils.toCamelCase(name));
c.setDbName(name);
pkColumns.add(c);
}
conn.close();
Table t = new Tab
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-15 16:16 代码自动生成工具\
目录 0 2018-10-15 16:15 代码自动生成工具\Generator\
文件 656 2018-09-13 09:41 代码自动生成工具\Generator\.classpath
目录 0 2018-10-15 16:15 代码自动生成工具\Generator\.idea\
文件 9 2018-09-13 09:42 代码自动生成工具\Generator\.idea\.name
目录 0 2018-10-15 16:15 代码自动生成工具\Generator\.idea\artifacts\
文件 605 2018-09-13 09:42 代码自动生成工具\Generator\.idea\artifacts\Generator_jar.xm
文件 686 2018-09-13 09:42 代码自动生成工具\Generator\.idea\compiler.xm
目录 0 2018-10-15 16:15 代码自动生成工具\Generator\.idea\copyright\
文件 76 2018-09-13 09:42 代码自动生成工具\Generator\.idea\copyright\profiles_settings.xm
文件 159 2018-09-13 09:42 代码自动生成工具\Generator\.idea\encodings.xm
文件 1241 2018-09-13 09:42 代码自动生成工具\Generator\.idea\misc.xm
文件 258 2018-09-13 09:42 代码自动生成工具\Generator\.idea\modules.xm
文件 61482 2018-09-13 09:42 代码自动生成工具\Generator\.idea\workspace.xm
文件 591 2018-09-13 09:41 代码自动生成工具\Generator\.project
目录 0 2018-10-15 16:15 代码自动生成工具\Generator\.settings\
文件 88 2018-09-13 09:58 代码自动生成工具\Generator\.settings\org.eclipse.core.resources.prefs
文件 364 2018-09-13 09:42 代码自动生成工具\Generator\.settings\org.eclipse.jdt.core.prefs
文件 122 2018-09-13 09:42 代码自动生成工具\Generator\.settings\org.eclipse.wst.common.project.facet.core.xm
目录 0 2018-10-15 16:15 代码自动生成工具\Generator\bin\
目录 0 2018-10-15 16:15 代码自动生成工具\Generator\bin\com\
目录 0 2018-10-15 16:15 代码自动生成工具\Generator\bin\com\eoma\
目录 0 2018-10-15 16:15 代码自动生成工具\Generator\bin\com\eoma\autocoding\
目录 0 2018-10-15 16:15 代码自动生成工具\Generator\bin\com\eoma\autocoding\common\
文件 2300 2018-10-13 14:27 代码自动生成工具\Generator\bin\com\eoma\autocoding\common\Column.class
文件 1950 2018-10-13 14:27 代码自动生成工具\Generator\bin\com\eoma\autocoding\common\Table.class
文件 10398 2018-10-13 14:27 代码自动生成工具\Generator\bin\com\eoma\autocoding\Generator.class
目录 0 2018-10-15 16:15 代码自动生成工具\Generator\bin\com\eoma\autocoding\utils\
文件 2116 2018-10-13 14:27 代码自动生成工具\Generator\bin\com\eoma\autocoding\utils\CamelCaseUtils.class
文件 2645 2018-10-13 14:27 代码自动生成工具\Generator\bin\com\eoma\autocoding\utils\FileHelper.class
文件 5080 2018-09-13 10:47 代码自动生成工具\Generator\bin\generator.xm
............此处省略72个文件信息
- 上一篇:基于51单片机的心形声光电子琴
- 下一篇:json校验工具HiJson_64位
相关资源
- 随机森林R语言代码
- 计算机图形学 边填充算法实现代码
- 直流无刷电机方波驱动 stm32 例程代码
- 仿知乎界面小程序源代码
- 贪吃蛇源代码.fla
- 周立功开发板ProASIC3实验-syn_FIFO代码
- IMX385驱动代码.zip
- dotnet 写字板 实验 源代码 不好请要不
- 图像二维小波变换的实现源代码
- 八三编码器设计 VHDL代码 简单,包附
- linux应用层的华容道游戏源代码
- 交通咨询模拟系统完整代码
- http请求状态代码
- 数值分析所有实验代码
- 网上拍卖系统完整源代码
- 音乐代码转换软件 单片机编程时用
- CSMA/CD等动画演示加源代码
- silicon lab公司的收音IC SI47XX全套开发工
- 用51单片机实现G代码翻译
- 合同管理系统的源代码(附数据库)
- 用VC 编写的仿QQ聊天室程序源代码
- web班级网站设计代码
- 38k单片机红外发送代码、keil
- STM32F103 串口程序(完整版)
- 网络唤醒代码
- VPC3_DPV1源代码,Profibus
- PB做的托盘程序(最小化后在左下角显
- RSA算法源码
- ubuntu9.10 可加载内核模块和字符设备驱
- 操作系统 LRU算法 实验报告 及 程序代
评论
共有 条评论