• mysql逆向生成 java 实体类


    import java.io.File;
    import java.io.FileWriter;
    import java.io.PrintWriter;
    import java.sql.Connection;
    import java.sql.DatabaseMetaData;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.ResultSetMetaData;
    import java.text.SimpleDateFormat;
    import java.util.ArrayList;
    import java.util.Date;
    import java.util.List;
    
    public class GenEntityMysql {
        private static final GenEntityMysql INSTANCE = new GenEntityMysql();
    
        private String tableName;// 表名
        private String[] colNames; // 列名数组
        private String[] colTypes; // 列名类型数组
        private int[] colSizes; // 列名大小数组
        private boolean needUtil = false; // 是否需要导入包java.util.*
        private boolean needSql = false; // 是否需要导入包java.sql.*
        private static final SimpleDateFormat SDF = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        private static final String SQL = "SELECT * FROM ";// 数据库操作
    
        // TODO 需要修改的地方
        private static final String URL = "jdbc:mysql://localhost:3306/库名";
        private static final String NAME = "root";
        private static final String PASS = "12345678";
        private static final String DRIVER = "com.mysql.jdbc.Driver";
        private String packageOutPath = "com.zdz.entity";// 指定实体生成所在包的路径
        private String authorName = "zdz";// 作者名字
        private String[] generateTables = {"表名"};//指定需要生成的表的表名,全部生成设置为null
    
        /**
         * 类的构造方法
         */
        private GenEntityMysql() {
        }
    
        /**
         * @return
         * @description 生成class的所有内容
         * @author paul
         * @date 2017年8月18日 下午5:30:07
         * @update 2017年8月18日 下午5:30:07
         * @version V1.0
         */
        private String parse() {
            StringBuffer sb = new StringBuffer();
            sb.append("package " + packageOutPath + ";
    ");
            sb.append("
    ");
            // 判断是否导入工具包
            if (needUtil) {
                sb.append("import java.util.Date;
    ");
            }
            if (needSql) {
                sb.append("import java.sql.*;
    ");
            }
            // 注释部分
            sb.append("/**
    ");
            sb.append(" * table name:  " + tableName + "
    ");
            sb.append(" * author name: " + authorName + "
    ");
            sb.append(" * create time: " + SDF.format(new Date()) + "
    ");
            sb.append(" */ 
    ");
            // 实体部分
            sb.append("public class " + getTransStr(tableName, true) + "{
    
    ");
            processAllAttrs(sb);// 属性
            sb.append("
    ");
            processAllMethod(sb);// get set方法
            sb.append("}
    ");
            return sb.toString();
        }
    
        /**
         * @param sb
         * @description 生成所有成员变量
         * @author paul
         * @date 2017年8月18日 下午5:15:04
         * @update 2017年8月18日 下午5:15:04
         * @version V1.0
         */
        private void processAllAttrs(StringBuffer sb) {
            for (int i = 0; i < colNames.length; i++) {
                sb.append("	private " + sqlType2JavaType(colTypes[i]) + " " + getTransStr(colNames[i], false) + ";
    ");
            }
        }
    
        /**
         * @param sb
         * @description 生成所有get/set方法
         * @author paul
         * @date 2017年8月18日 下午5:14:47
         * @update 2017年8月18日 下午5:14:47
         * @version V1.0
         */
        private void processAllMethod(StringBuffer sb) {
            for (int i = 0; i < colNames.length; i++) {
                sb.append("	public void set" + getTransStr(colNames[i], true) + "(" + sqlType2JavaType(colTypes[i]) + " "
                        + getTransStr(colNames[i], false) + "){
    ");
                sb.append("		this." + getTransStr(colNames[i], false) + "=" + getTransStr(colNames[i], false) + ";
    ");
                sb.append("	}
    ");
                sb.append("	public " + sqlType2JavaType(colTypes[i]) + " get" + getTransStr(colNames[i], true) + "(){
    ");
                sb.append("		return " + getTransStr(colNames[i], false) + ";
    ");
                sb.append("	}
    ");
            }
        }
    
        /**
         * @param str 传入字符串
         * @return
         * @description 将传入字符串的首字母转成大写
         * @author paul
         * @date 2017年8月18日 下午5:12:12
         * @update 2017年8月18日 下午5:12:12
         * @version V1.0
         */
        private String initCap(String str) {
            char[] ch = str.toCharArray();
            if (ch[0] >= 'a' && ch[0] <= 'z')
                ch[0] = (char) (ch[0] - 32);
            return new String(ch);
        }
    
        /**
         * @return
         * @description 将mysql中表名和字段名转换成驼峰形式
         * @author paul
         * @date 2017年8月18日 下午4:55:07
         * @update 2017年8月18日 下午4:55:07
         * @version V1.0
         */
        private String getTransStr(String before, boolean firstChar2Upper) {
            //不带"_"的字符串,则直接首字母大写后返回
            if (!before.contains("_"))
                return firstChar2Upper ? initCap(before) : before;
            String[] strs = before.split("_");
            StringBuffer after = null;
            if (firstChar2Upper) {
                after = new StringBuffer(initCap(strs[0]));
            } else {
                after = new StringBuffer(strs[0]);
            }
            if (strs.length > 1) {
                for (int i=1; i<strs.length; i++)
                    after.append(initCap(strs[i]));
            }
            return after.toString();
        }
    
        /**
         * @return
         * @description 查找sql字段类型所对应的Java类型
         * @author paul
         * @date 2017年8月18日 下午4:55:41
         * @update 2017年8月18日 下午4:55:41
         * @version V1.0
         */
        private String sqlType2JavaType(String sqlType) {
            if (sqlType.equalsIgnoreCase("bit")) {
                return "boolean";
            } else if (sqlType.equalsIgnoreCase("tinyint")) {
                return "byte";
            } else if (sqlType.equalsIgnoreCase("smallint")) {
                return "short";
            } else if (sqlType.equalsIgnoreCase("int")) {
                return "Integer";
            } else if (sqlType.equalsIgnoreCase("bigint")) {
                return "Long";
            } else if (sqlType.equalsIgnoreCase("float")) {
                return "float";
            } else if (sqlType.equalsIgnoreCase("decimal")) {
                return "BigDecimal";
            } else if (sqlType.equalsIgnoreCase("numeric")
                    || sqlType.equalsIgnoreCase("real") || sqlType.equalsIgnoreCase("money")
                    || sqlType.equalsIgnoreCase("smallmoney")) {
                return "double";
            } else if (sqlType.equalsIgnoreCase("varchar") || sqlType.equalsIgnoreCase("char")
                    || sqlType.equalsIgnoreCase("nvarchar") || sqlType.equalsIgnoreCase("nchar")
                    || sqlType.equalsIgnoreCase("text")) {
                return "String";
            } else if (sqlType.equalsIgnoreCase("datetime")) {
                return "Date";
            } else if (sqlType.equalsIgnoreCase("image")) {
                return "Blod";
            }
            return null;
        }
    
        /**
         *
         * @description 生成方法
         * @author paul
         * @date 2017年8月18日 下午2:04:20
         * @update 2017年8月18日 下午2:04:20
         * @version V1.0
         * @throws Exception
         */
        private void generate() throws Exception {
            //与数据库的连接
            Connection con;
            PreparedStatement pStemt = null;
            Class.forName(DRIVER);
            con = DriverManager.getConnection(URL, NAME, PASS);
            System.out.println("connect database success...");
            //获取数据库的元数据
            DatabaseMetaData db = con.getMetaData();
            //是否有指定生成表,有指定则直接用指定表,没有则全表生成
            List<String> tableNames = new ArrayList<>();
            if (generateTables == null) {
                //从元数据中获取到所有的表名
                ResultSet rs = db.getTables(null, null, null, new String[] { "TABLE" });
                while (rs.next()) tableNames.add(rs.getString(3));
            } else {
                for (String tableName : generateTables) tableNames.add(tableName);
            }
            String tableSql;
            PrintWriter pw = null;
            for (int j = 0; j < tableNames.size(); j++) {
                tableName = tableNames.get(j);
                tableSql = SQL + tableName;
                pStemt = con.prepareStatement(tableSql);
                ResultSetMetaData rsmd = pStemt.getMetaData();
                int size = rsmd.getColumnCount();
                colNames = new String[size];
                colTypes = new String[size];
                colSizes = new int[size];
                //获取所需的信息
                for (int i = 0; i < size; i++) {
                    colNames[i] = rsmd.getColumnName(i + 1);
                    colTypes[i] = rsmd.getColumnTypeName(i + 1);
                    if (colTypes[i].equalsIgnoreCase("datetime"))
                        needUtil = true;
                    if (colTypes[i].equalsIgnoreCase("image") || colTypes[i].equalsIgnoreCase("text"))
                        needSql = true;
                    colSizes[i] = rsmd.getColumnDisplaySize(i + 1);
                }
                //解析生成class的所有内容
                String content = parse();
                //输出生成文件
                File directory = new File("");
                String dirName = directory.getAbsolutePath() + "/src/main/java/" + packageOutPath.replace(".", "/");
                File dir = new File(dirName);
                if (!dir.exists() && dir.mkdirs()) System.out.println("generate dir 【" + dirName + "】");
                String javaPath = dirName + "/" + getTransStr(tableName, true) + ".java";
                FileWriter fw = new FileWriter(javaPath);
                pw = new PrintWriter(fw);
                pw.println(content);
                pw.flush();
                System.out.println("create class 【" + tableName + "】");
            }
            if (pw != null)
                pw.close();
        }
    
        /**
         * @param args
         * @description 执行方法
         * @author paul
         * @date 2017年8月18日 下午2:03:35
         * @update 2017年8月18日 下午2:03:35
         * @version V1.0
         */
        public static void main(String[] args) {
            try {
                INSTANCE.generate();
                System.out.println("generate classes success!");
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    
    }
  • 相关阅读:
    lintcode-144-交错正负数
    lintcode-143-排颜色 II
    lintcode-142-O(1)时间检测2的幂次
    lintcode-141-x的平方根
    lintcode-138-子数组之和
    postman-----使用CSV和Json文件实现批量接口测试
    postman—创建collection,执行collection和批量执行
    postman-变量
    postman-鉴权
    Postman—cookie
  • 原文地址:https://www.cnblogs.com/java-xz/p/10564704.html
Copyright © 2020-2023  润新知