模拟Hibernate框架的小demo

模拟Hibernate框架的小demo

该程序为尚学堂马士兵老师讲解,模拟了hibernate的原理,主要应用了字符串拼接,反射知识。

step1,新建数据库

  

use jd;
create table _student(
_id int(11),
_nage varchar(20),
_age int(11));

step 2 student实体类,再次略过

 

step3,编写session类,模拟hibernate的实现原理。

 

import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.Map;

import com.bjsxt.hibernate.model.Student;

public class Session {
	static String tableName = "_Student";
	static Map<String, String> cfs = new HashMap<String, String>();
	static String[] methodNames;

	public Session() {
		cfs.put("_id", "id");
		cfs.put("_name", "name");
		cfs.put("_age", "age");
		methodNames = new String[cfs.size()];
	}

	public static void save(Student s) throws Exception {
		// TODO Auto-generated method stub
		int index = 0;
		String sql = createSql();

		try {
			Class.forName("com.mysql.jdbc.Driver");
			Connection conn = DriverManager.getConnection(
					"jdbc:mysql://localhost/jd", "root", "123456");
			PreparedStatement ps = conn.prepareStatement(sql);
				

			for (int i = 0; i < methodNames.length; i++) {
				Method m = s.getClass().getMethod(methodNames[i]);
				Class r = m.getReturnType();
				if (r.getName().equals("java.lang.String")) {
					String returnValue = (String) m.invoke(s);
					ps.setString(i + 1, returnValue);
					System.out.println(returnValue);
				}
				if (r.getName().equals("int")) {
					Integer returnValue = (Integer) m.invoke(s);
					ps.setInt(i + 1, returnValue);
					System.out.println(returnValue);
				}
				// System.out.println(m.getName()+","+m.getReturnType()+","+r.getName());
			}
			System.out.println(sql);
			ps.executeUpdate();	
			ps.close();
			conn.close();
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}

	}

	private static String createSql() {

		String str2 = "";
		String str1 = "";
		int index = 0;
		for (String s : cfs.keySet()) {//s为_id,_Age,_Name
			String v = cfs.get(s);
			v = Character.toUpperCase(v.charAt(0)) + v.substring(1);//Id,Name,Age
			//System.out.println(v+"涛");
			methodNames[index] = "get" + v; // str1+=s+",";//getId,getName,getAge
			//System.out.println(s);
			//System.out.println(methodNames[index]);
			str1 += s + ",";
			index++;
			System.out.println(str1);
		}
		str1 = str1.substring(0, str1.length() - 1);
		//System.out.println(str1);
		for (int i = 0; i < cfs.size(); i++) {

			if (i == cfs.size() - 1) {
				str2 += "?";
			} else {
				str2 += "?,";
			}

		}
		//System.out.println(str2);
		String sql = "insert into " + tableName + "(" + str1 + ")"
				+ " values (" + str2 + ")";
		System.out.println(sql+"createSql方法里面");
		return sql;
	}

}

step4,测试,

import com.bjsxt.hibernate.model.Student;
public class StudentTest {

	public static void main(String[] args) throws Exception {

		Student s = new Student();
		s.setId(10);
		s.setName("s1");
		s.setAge(1);		
		Session session = new Session();
		session.save(s);
	}
}

 

 

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/110101.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 【转帖】ArcEngine连接表join

    【转帖】ArcEngine连接表join

  • 关于this指针

    关于this指针一个类的对象中实际只包含了该对象的数据成员信息,当我们创建了多个类的对象时,使对象1调用该类的成员函数,为什么可以改变对象1中的信息,而不去设置其他对象的信息?成员函数在类中只有一份,所有该类的对象共同使用,编译器是如何识别并处理的呢?编译器识别一个类分为三步:1.识别类的类名2.识别类的成员变量3.识别类的成员函数并对成员函数进行修改修改方式:成员函数有一个隐藏…

  • Java对象序列化详解

    Java对象序列化详解所有分布式应用常常需要跨平台,跨网络,因此要求所有传的参数、返回值都必须实现序列化。一、定义  序列化:把Java对象转换为字节序列的过程。    反序列化:把字节序列恢复为Java对象的过程。二、用途  对象的序列化主要有两种用途:    1)把对象的字节序列永久地保存到硬盘上,通常存放在一个文件中;(持久化对象)    2)在网络上传送对象的字节序列。(网络传输对象)…

  • Rectified Linear Unit (ReLU)

    Rectified Linear Unit (ReLU)TheRectifiedLinearUnit(ReLU)computesthefunctionf(x)=max(0,x)f(x)=max(0,x),whichissimplythresholdedatzero.ThereareseveralprosandconstousingtheReLUs:(Pros)Comparedtosigmoid/tan

    2022年10月25日
  • java 多线程yield

    java 多线程yieldpackagecom.lhj.java;publicclassTest{publicstaticvoidmain(String[]args)throwsException{RRRt1=newRRR(“t1”);RRRt2=newRRR(“t2”);

  • 碰撞圆周率_我让你背一遍圆周率

    碰撞圆周率_我让你背一遍圆周率#include”stdafx.h”#include<iostream>//碰撞后速度voidtxpz(doublem1,doublem2,double&v1,double&v2){ doublev1_=((m1-m2)*v1+2*m2*v2)/(m1+m2); doublev2_=((m2…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号