采用封装及反射原理封装一个将对象装换为对数据库操作的工具类
package project02_Order_management.dao;import java.lang.reflect.Field;import java.lang.reflect.InvocationTargetException;import java.lang.reflect.Method;import java.sql.Connection;import java.sql.PreparedStatement;import java.sql.ResultSet
package project02_Order_management.dao; import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.List; public class BaseDao { /** * 查询所有数据方法 */ public static List findAll(Object obj, Connection conn) throws Exception { // 获取要操作对象的类 Class clazz = obj.getClass(); // 获取传入实体的所有方法; Method[] methods = clazz.getDeclaredMethods(); // 获取传入实体中的所有的属性 Field[] fields = clazz.getDeclaredFields(); // 建立结果集List接收对象 List list = new ArrayList(); // 创建查询的sql语句; String sql = "select * from " + obj.getClass().getSimpleName().toLowerCase(); System.out.println(sql); // System.out.println(sql); // 预编译sql语句 PreparedStatement preparedStatement = conn.prepareStatement(sql); ResultSet resultSet = preparedStatement.executeQuery(); // 从结果集中循环取出放入结果集List while (resultSet.next()) { // 查询的结果的接受对象 Object entity = clazz.newInstance(); // 循环类中的属性,进行复制操作 for (int i = 0; i < fields.length; i++) { // 获取属性名称 String fieldName = fields[i].getName(); // 获取result结果集中的每个结果字段的对象 Object fieldObject = resultSet.getObject(i + 1); if (fieldObject == null) { fieldObject = "null";// 防止数据为null时引发空指针异常 } for (int j = 0; j < methods.length; j++) { // 比对属性名加上set后与方法名是否一致,进行对应的属性用对应的方法进行复制操作 if (("set" + fieldName).equalsIgnoreCase(methods[j] .getName())) { // 执行传入对象的指定的方法 methods[j].invoke(entity, resultSet.getObject(fieldName)); } } } list.add(entity); } return list; } /** * 根据id查询数据 * * @throws SQLException * @throws IllegalAccessException * @throws InstantiationException * @throws InvocationTargetException * @throws IllegalArgumentException */ public static Object findById(Object obj, Integer id, Connection conn) throws SQLException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException { // 获取要操作对象的类 Class clazz = obj.getClass(); // 获取传入实体的所有方法; Method[] methods = clazz.getDeclaredMethods(); // 获取传入实体中的所有的属性 Field[] fields = clazz.getDeclaredFields(); // 查询的结果的接受对象 Object entity = null; // 创建查询的sql语句; String sql = "select * from " + clazz.getSimpleName().toLowerCase() + " where id=?"; PreparedStatement preparedStatement = conn.prepareStatement(sql); preparedStatement.setInt(1, id); ResultSet resultSet = preparedStatement.executeQuery(); if (resultSet.next()) { // 根据获取的实体的类,创建实体 entity = clazz.newInstance(); // 循环类中的属性,进行复制操作 for (int i = 0; i < fields.length; i++) { // 获取属性名称 String fieldName = fields[i].getName(); // 获取result结果集中的每个结果字段的对象 Object fieldObject = resultSet.getObject(i + 1); if (fieldObject == null) { fieldObject = "null";// 防止数据为null时引发空指针异常 } for (int j = 0; j < methods.length; j++) { // 比对属性名加上set后与方法名是否一致,进行对应的属性用对应的方法进行复制操作 if (("set" + fieldName).equalsIgnoreCase(methods[j] .getName())) { // 执行传入对象的指定的方法 methods[j].invoke(entity, resultSet.getObject(fieldName)); } } } } return entity; } /** * 分页数据查询 * * @param obj * 传入目标对象 * @param conn * 传入数据库连接 * @param startRow * 传入开始的行数 * @param endRow * 传入结束的行数 */ public static List paging(Object obj, Connection conn, Integer startRow, Integer endRow) { return null; } /** * 保存方法 */ public static void save(Object obj, Connection conn) throws IllegalAccessException, IllegalArgumentException, InvocationTargetException, SQLException { Class clazz = obj.getClass(); Method[] methods = clazz.getDeclaredMethods(); Field[] fields = clazz.getDeclaredFields(); // 获取操作的表单名字,[这里类名必须和表名一致] String table = clazz.getSimpleName().toLowerCase(); String fieldsName = ""; for (int i = 0; i < fields.length; i++) { fieldsName = fieldsName + fields[i].getName() + ","; } fieldsName = fieldsName.substring(0, fieldsName.length() - 1); // 占位符的设置 String placeholder = ""; for (int j = 0; j < fields.length; j++) { // 拼接属性的get的方法名 String str = "get" + fields[j].getName(); for (int k = 0; k < methods.length; k++) { if (str.equalsIgnoreCase(methods[k].getName())) { placeholder = placeholder + "?" + ","; } } } placeholder = placeholder.substring(0, placeholder.length() - 1); // 拼接sql语句 String sql = "insert into " + table + "(" + fieldsName + ")" + " values " + "(" + placeholder + ")"; System.out.println(sql); PreparedStatement pst = conn.prepareStatement(sql); int index = 1; for (int j = 0; j < fields.length; j++) { String str = "get" + fields[j].getName(); // 循环方法名比对 for (int k = 0; k < methods.length; k++) { // 如果当前的属性拼出的get方法名,与方法明集合中的有一样的执行 if (str.equalsIgnoreCase(methods[k].getName())) { // 接收指定的方法执行后的数据 Object p = methods[k].invoke(obj); // 为指定的占位符进行赋值 pst.setObject(index++, p); } } } // 执行已经加载的sql语句 pst.executeUpdate(); } /** * 更新数据 */ public static void update(Object obj, Connection conn) throws Exception { // 修改 Class clazz = obj.getClass(); Method[] methods = clazz.getDeclaredMethods(); Field[] fields = clazz.getDeclaredFields(); /* * 拼接Sql */ String table = clazz.getSimpleName().toLowerCase(); String setField = ""; int id = 1; for (int i = 0; i < fields.length; i++) { for (int j = 0; j < methods.length; j++) { String strGetField = "get" + fields[i].getName(); if (strGetField.equalsIgnoreCase(methods[j].getName())) { /* * 拼接sql语句中的set字段,并用占位符 */ setField = setField + fields[i].getName() + "= ?,"; // 获取id if ("getId".equalsIgnoreCase(methods[j].getName())) { id = Integer .parseInt(methods[j].invoke(obj).toString()); } } } } setField = setField.substring(0, setField.length() - 1); String sql = "update " + table + " set " + setField + " where id= ?"; System.out.println(sql); PreparedStatement pst = conn.prepareStatement(sql); int index = 1; for (int j = 0; j < fields.length; j++) { String str = "get" + fields[j].getName(); // 循环方法名比对 for (int k = 0; k < methods.length; k++) { // 如果当前的属性拼出的get方法名,与方法明集合中的有一样的执行 if (str.equalsIgnoreCase(methods[k].getName())) { // 接收指定的方法执行后的数据 Object p = methods[k].invoke(obj); // 为指定的占位符进行赋值 pst.setObject(index++, p); } } } pst.setObject(index++, id); pst.execute(); } /** * 根据id删除数据 * * @throws SQLException */ public static void delById(Object obj, Integer id, Connection conn) throws SQLException { System.out.println("============="); Class clazz = obj.getClass(); String table = clazz.getSimpleName().toLowerCase(); String sql = "delete from " + table + " where id=?"; System.out.println(sql); PreparedStatement preparedStatement = conn.prepareStatement(sql); preparedStatement.setInt(1, id); preparedStatement.execute(); } }
注:类名必须与表名一致,不区分大小写;

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

This article describes how to build a highly available MongoDB database on a Debian system. We will explore multiple ways to ensure data security and services continue to operate. Key strategy: ReplicaSet: ReplicaSet: Use replicasets to achieve data redundancy and automatic failover. When a master node fails, the replica set will automatically elect a new master node to ensure the continuous availability of the service. Data backup and recovery: Regularly use the mongodump command to backup the database and formulate effective recovery strategies to deal with the risk of data loss. Monitoring and Alarms: Deploy monitoring tools (such as Prometheus, Grafana) to monitor the running status of MongoDB in real time, and

This article introduces a variety of methods and tools to monitor PostgreSQL databases under the Debian system, helping you to fully grasp database performance monitoring. 1. Use PostgreSQL to build-in monitoring view PostgreSQL itself provides multiple views for monitoring database activities: pg_stat_activity: displays database activities in real time, including connections, queries, transactions and other information. pg_stat_replication: Monitors replication status, especially suitable for stream replication clusters. pg_stat_database: Provides database statistics, such as database size, transaction commit/rollback times and other key indicators. 2. Use log analysis tool pgBadg

Regarding the problem of removing the Python interpreter that comes with Linux systems, many Linux distributions will preinstall the Python interpreter when installed, and it does not use the package manager...

How to teach computer novice programming basics within 10 hours? If you only have 10 hours to teach computer novice some programming knowledge, what would you choose to teach...

The network configuration of the Debian system is mainly implemented through the /etc/network/interfaces file, which defines network interface parameters, such as IP address, gateway, and DNS server. Debian systems usually use ifup and ifdown commands to start and stop network interfaces. By modifying the ifeline in the interfaces file, you can set a static IP or use DHCP to dynamically obtain the IP address. It should be noted that Debian12 and subsequent versions no longer use NetworkManager by default, so other command-line tools, such as IP commands, may be required to manage network interfaces. You can edit /etc/netwo

Understanding the anti-crawling strategy of Investing.com Many people often try to crawl news data from Investing.com (https://cn.investing.com/news/latest-news)...

Downloading software from official Debian or reliable sources is crucial. The following steps and suggestions can effectively ensure the security of the downloaded Debian system or software package: 1. Verify the integrity of the software package After downloading the Debian image, be sure to use MD5 or SHA256 and other checksums to verify its integrity to prevent malicious tampering. 2. Choose a secure mirror source to always download from the Debian official website or a reputable third-party mirror site. Priority is given to official certification or mirroring sources provided by large institutions. 3. Keep the system updates and installation immediately after running sudoaptupdate&&sudoaptupgrade to fix potential security vulnerabilities. It is recommended to install unattend

This article describes how to optimize ZooKeeper performance on Debian systems. We will provide advice on hardware, operating system, ZooKeeper configuration and monitoring. 1. Optimize storage media upgrade at the system level: Replacing traditional mechanical hard drives with SSD solid-state drives will significantly improve I/O performance and reduce access latency. Disable swap partitioning: By adjusting kernel parameters, reduce dependence on swap partitions and avoid performance losses caused by frequent memory and disk swaps. Improve file descriptor upper limit: Increase the number of file descriptors allowed to be opened at the same time by the system to avoid resource limitations affecting the processing efficiency of ZooKeeper. 2. ZooKeeper configuration optimization zoo.cfg file configuration
