自动生成JPA bean及repository生成简陋工具

因为工具不太灵活,手写了一个,没啥技术难度,纯堆代码量

import java.io.File;
import java.io.FileOutputStream;
import java.nio.charset.Charset;
import java.sql.*;
import java.util.*;/*** JPA dao自动生成工具*/
public class JpaGenerate {//bean所在位置,示例:com.jpa.beanstatic String entityPackage = "com.datasource.entity";static String entityPath = "";//repository,示例:com.jpa.repositorystatic String repositoryPackage = "com.datasource.dao";static String repositoryPath = "";//mysql配置final static String url = "jdbc:mysql://localhost:3306/test";final static String user = "root";final static String password = "123456";//需要自动生成的数据库final static String database = "operation_platform";public static void main(String[] args) throws SQLException {Driver driver = new com.mysql.cj.jdbc.Driver();Properties info = new Properties();info.setProperty("user", user);info.setProperty("password", password);Connection conn = driver.connect(url, info);Statement stat = conn.createStatement();String sql = """select table_name,column_name,column_type,column_key,extra,column_commentFROMinformation_schema. COLUMNSWHERE"""+ "table_schema = '" + database + "' ORDER BY table_name";ResultSet rs = stat.executeQuery(sql);Map<String, List<DatasourceTableField>> fieldMap = new HashMap<>();while (rs.next()) {String table = rs.getString("table_name");if (!fieldMap.containsKey(table)) {fieldMap.put(table, new ArrayList<>());}fieldMap.get(table).add(new DatasourceTableField(rs.getString("column_name"),rs.getString("column_type"),rs.getString("column_comment"),rs.getString("column_key"),rs.getString("extra")));}conn.close();String projectPath = System.getProperty("user.dir").replaceAll("\\\\", "/");entityPath = projectPath + "/src/main/java/" + entityPackage.replaceAll("\\.", "/");repositoryPath = projectPath + "/src/main/java/" + repositoryPackage.replaceAll("\\.", "/");fieldMap.keySet().stream().forEach(key -> {try {createJpaFiles(key, fieldMap.get(key));} catch (Exception e) {throw new RuntimeException(e);}});}static void createJpaFiles(String table, List<DatasourceTableField> list) throws Exception {String tableName = convertTableName(table);String entityFilePath = entityPath + "/" + tableName + ".java";File entity = new File(entityFilePath);if (!entity.exists()) {entity.createNewFile();FileOutputStream outputStream = new FileOutputStream(entity);String fileText = "package " + entityPackage + ";\n\n" + """import jakarta.persistence.*;import lombok.Data;""";boolean time = false;String body = "\n";for (DatasourceTableField field : list) {if (field.columnType.contains("("))field.columnType = field.columnType.split("\\(")[0];String columnName = convertFieldName(field.columnName);switch (field.columnType) {case "int", "smallint" -> {if ("PRI".equals(field.columnKey)) {if ("auto_increment".equals(field.extra)) {body += "    @GeneratedValue(strategy = GenerationType.IDENTITY)\n";}body += "    @Id\n";}body += "    private Integer " + columnName + ";\n";}case "varchar", "text" -> body += "    private String " + columnName + ";\n";case "datetime" -> {time = true;body += "    private LocalDateTime " + columnName + ";\n";}case "double" -> body += "    private Double " + columnName + ";\n";}}if (time) {fileText += "import java.time.LocalDateTime;\n\n";}fileText += """@Entity@Data@Table(name = \"""" + table +"\")\npublic class " + tableName + "{\n" + body + "}";outputStream.write(fileText.getBytes(Charset.forName("utf-8")));outputStream.close();}String repositoryFilePath = repositoryPath + "/" + tableName + "Repository.java";File repository = new File(repositoryFilePath);if (!repository.exists()) {repository.createNewFile();FileOutputStream outputStream = new FileOutputStream(repository);String fileText = "package " + repositoryPackage + ";\n\n" +"import " + entityPackage + "." + tableName + ";\n" +"""import org.springframework.data.jpa.repository.JpaRepository;import org.springframework.stereotype.Repository;@Repository"""+ "public interface " + tableName + "Repository extends JpaRepository<" +tableName + ", Integer> {\n}";outputStream.write(fileText.getBytes(Charset.forName("utf-8")));outputStream.close();}}static String convertTableName(String table) {String tableName = "";if (table.contains("_")) {for (String str : table.split("_")) {tableName += Character.toUpperCase(str.charAt(0)) + str.substring(1);}} else {tableName = Character.toUpperCase(table.charAt(0)) + table.substring(1);}return tableName;}static String convertFieldName(String tableField) {String fieldName = "";if (tableField.contains("_")) {boolean head = true;for (String str : tableField.split("_")) {if (head) {fieldName += str;head = false;} elsefieldName += Character.toUpperCase(str.charAt(0)) + str.substring(1);}} else {fieldName = tableField;}return fieldName;}static class DatasourceTableField {String columnName;String columnType;String columnComment;String columnKey;String extra;public DatasourceTableField(String columnName, String columnType, String columnComment, String columnKey, String extra) {this.columnName = columnName;this.columnType = columnType;this.columnComment = columnComment;this.columnKey = columnKey;this.extra = extra;}}}

由于项目中使用了lombok,所以写死了引入,不需要的直接去掉第85行,那么就需要重新加get set函数,在111行后再遍历一下list对body中添加getset函数即可,这里有一些坑,这个只能用于mysql,我没写其他数据库的连接和查询,然后目录是根据spring boot的结构来的,如果不是spring boot 可以修改64、65行目录,由于偷懒,mysql的数据类型也没写完,有其他类型的可以在94行的switch中添加,最后,此代码需要jdk17,因为使用了多行字符串和17+的switch,低版本的话改下字符串和switch写法也能用

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/97632.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C++Day2

#include <iostream>using namespace std;class Rect { private:int width;int height; public:void init(int w,int h){width w;height h;}void set_w(int w){width w;}void set_h(int h){height h;}void show(){cout << "矩形的周长为&#xff1a;"…

Java数组:没错,不装了我就是书架。

&#x1f451;专栏内容&#xff1a;Java⛪个人主页&#xff1a;子夜的星的主页&#x1f495;座右铭&#xff1a;前路未远&#xff0c;步履不停 目录 一、数组的概念1、什么是数组&#xff1f;2、数组的创建3、数组的初始化Ⅰ、动态初始化Ⅱ、静态初始化 二、数组的使用1、数组中…

Windows系统上使用CLion远程开发Linux程序

CLion远程开发Linux程序 情景说明Ubuntu配置CLion配置同步 情景说明 在Windows系统上使用CLion开发Linux程序&#xff0c;安装CLion集成化开发环境时会自动安装cmake、mingw&#xff0c;代码提示功能也比较友好。 但是在socket开发时&#xff0c;包含sys/socket.h头文件时&am…

【Java-LangChain:使用 ChatGPT API 搭建系统-4】评估输入-分类

第三章&#xff0c;评估输入-分类 如果您正在构建一个允许用户输入信息的系统&#xff0c;首先要确保人们在负责任地使用系统&#xff0c;以及他们没有试图以某种方式滥用系统&#xff0c;这是非常重要的。 在本章中&#xff0c;我们将介绍几种策略来实现这一目标。 我们将学习…

【yolo系列:YOLOV7改进-添加EIOU,SIOU,AlphaIOU,FocalEIOU.】

yolo系列文章目录 在YoloV7中添加EIoU,SIoU,AlphaIoU,FocalEIoU,Wise-IoU. 2023-2-7 更新 yolov7添加Wise-IoUB站链接 重磅&#xff01;&#xff01;&#xff01;&#xff01;&#xff01; YOLO系列模型改进损失函数 文章目录 yolo系列文章目录一、初始的yolov7损失函数二、首…

7346-2015 控制电机基本外形结构型式

声明 本文是学习GB-T 7346-2015 控制电机基本外形结构型式.pdf而整理的学习笔记,分享出来希望更多人受益,如果存在侵权请及时联系我们 1 范围 本标准规定了控制电机的机座号、外形及安装尺寸、轴伸型式、出线方式、标记及铭牌。 本标准适用于各类控制电机(以下简称电机),其…

NFT Insider#110:The Sandbox与TB Media Global合作,YGG Web3游戏峰会阵容揭晓

引言&#xff1a;NFT Insider由NFT收藏组织WHALE Members、BeepCrypto出品&#xff0c;浓缩每周NFT新闻&#xff0c;为大家带来关于NFT最全面、最新鲜、最有价值的讯息。每期周报将从NFT市场数据&#xff0c;艺术新闻类&#xff0c;游戏新闻类&#xff0c;虚拟世界类&#xff0…

数据结构面试常问问题--保研及考研复试

前言&#xff1a; Hello大家好&#xff0c;我是Dream。今年保研上岸山东大学人工智能专业 &#xff08;经验贴&#xff09;&#xff0c;现在将我自己的专业课备考知识点整理出来&#xff0c;分享给大家&#xff0c;希望可以帮助到大家&#xff01;这是重点知识总结&#xff0c;…

为什么短视频离不开美颜SDK?短视频领域的秘密武器

在当今的社交媒体时代&#xff0c;短视频已经成为了人们获取信息、娱乐和社交的重要方式。无论是抖音、快手&#xff0c;还是Instagram、TikTok&#xff0c;短视频都以其独特的魅力吸引着数亿用户。而在这些短视频的背后&#xff0c;有一款名为“美摄美颜SDK”的秘密武器&#…

软件项目验收测试报告-软件项目验收流程

对甲方而言&#xff0c;项目验收是正式接受项目成果&#xff0c;将项目从建设转为运营。对于乙方来说&#xff0c;则意味着项目的结束&#xff0c;项目资源的释放。 项目验收是项目收尾的重要环节&#xff0c;依据招投标文件、合同对测评相关要求内容、项目章程和项目过程中的…

ssh指定的密钥协商方式以及Ansible的hosts文件修改密钥协商方式

一、首先你要知道用什么加密协商。 [WARNING]: Invalid characters were found in group names but not replaced, use -vvvv to see details 10.10.2.190 | UNREACHABLE! > {"changed": false,"msg": "Failed to connect to the host via ssh: U…

国庆出游远程实测:ToDesk 、TeamViewer、AnyDesk远程控制软件稳定性

ToDesk 、TeamViewer、AnyDesk远程控制软件稳定性 【前言】【实测软件】【测试环境】【实操体验】1. 软件安装2. 登录速度3. 文件传输4. 操作延迟5. 画面清晰度6. 安全防护 【本文小结】 【前言】 随着科技的不断发展&#xff0c;远程控制软件已成为我们生活中不可或缺的一部分…

7344-2015 交流伺服电动机通用技术条件

声明 本文是学习GB-T 7344-2015 交流伺服电动机通用技术条件.pdf而整理的学习笔记,分享出来希望更多人受益,如果存在侵权请及时联系我们 1 范围 本标准规定了交流伺服电动机的分类、技术要求和试验方法、检验规则、交付准备。 本标准适用于两相交流伺服电动机(以下简称电机…

7321-2017 定形耐火制品试样制备方法

声明 本文是学习GB-T 7321-2017 定形耐火制品试样制备方法.pdf而整理的学习笔记,分享出来希望更多人受益,如果存在侵权请及时联系我们 1 范围 本标准规定了定形耐火制品制样的定义、制样部位的确定原则和试样的制备。 本标准适用于定形耐火制品试样的制备。 2 规范性引用文…

centos7 + citus12 + postgresql 14 安装

1 安装及编译 yum install -y centos-release-scl-rh epel-release yum update -y yum groupinstall -y Development Tools yum install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm yum install -y postg…

JS进阶-this

普通函数this指向 普通函数的调用方式决定了this的值&#xff0c;即谁调用this的值指向谁 普通函数没有明确调用者时this值为window&#xff0c;严格模式下没有调用者时this的值为undefined 箭头函数this指向 箭头函数中的this与普通函数完全不同&#xff0c;也不受调用方式…

Vim同时打开多个文件

分屏模式 在 Vim 中&#xff0c;可以同时打开多个文件并使用分屏模式来查看它们。以下是一些常见的方法和命令&#xff1a; 在启动 Vim 时打开多个文件 使用 -o 选项打开文件并水平分屏&#xff1a; vim -o file1.txt file2.txt使用 -O 选项打开文件并垂直分屏&#xff1a; v…

宝塔反代openai官方API接口详细教程,502 Bad Gateway问题解决

一、前言 宝塔反代openai官方API接口详细教程&#xff0c;实现国内使用ChatGPT502 Bad Gateway问题解决&#xff0c; 此方法最简单快捷&#xff0c;没有复杂步骤&#xff0c;不容易出错&#xff0c;即最简单&#xff0c;零代码、零部署的方法。 二、实现前提 一台海外VPS服务…

简单OpenSL ES学习

初识OpenSL ES OpenSL ESObjects和Interfaces 所有的Object在OpenSl里面我们拿到的都是一个SLObjectItf&#xff1a;SLObjectItf_创建引擎创建过程要设计得这么麻烦&#xff1f;&#xff08;object的生命周期&#xff09;这么多参数&#xff0c;参数类型这么多学习障碍太大&…

[补题记录] Atcoder Beginner Contest 297(F)

URL&#xff1a;https://atcoder.jp/contests/abc297 目录 F Problem/题意 Thought/思路 Code/代码 F Problem/题意 给一个 H * W 的矩形&#xff0c;在其中任意放置 K 个点&#xff0c;由这 K 个点构成的最小矩形带来的贡献为该矩形的面积&#xff0c;这 K 个点构成一种…