Hibernate 프레임 워 크 를 모 의 하 는 작은 demo

3670 단어 Hibernate
이 프로그램 은 상 학당 말 병사 선생님 께 설명 하고 히 베 네 이 트 의 원 리 를 모 의 했 으 며 주로 문자열 조합, 반사 지식 을 응용 했다.
step 1, 새 데이터베이스
  
use jd;

create table _student(

_id int(11),

_nage varchar(20),

_age int(11));

step 2 student 실체 클래스, 다시 생략
 
step 3, session 류 를 작성 하여 hibenate 의 실현 원 리 를 모 의 합 니 다.
 
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;

	}



}


step 4, 테스트,
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);

	}

}

 
 

좋은 웹페이지 즐겨찾기