簡單的手工hibernate程序示例
本文講述了簡單的手工hibernate程序示例。分享給大家供大家參考。具體如下:
今天學習了下hibernate,寫了個小的手工程序,總結(jié)下,
首先創(chuàng)建數(shù)據(jù)庫表:
eclipse下,新建工程。
新建數(shù)據(jù)庫表的映射,這里使用手工方式完成:
IncrementTester.java
public class IncrementTester {
private Long id;
private String name;
public IncrementTester(){}
public IncrementTester(String name){
this.name = name;
}
public Long getId(){
return this.id;
}
private void setId(Long id){
this.id = id;
}
public String getName(){
return this.name;
}
public void setName(String name){
this.name = name;
}
}
對應(yīng)編寫映射xml文件
IncrementTester.hbm.xml
PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">
private
實現(xiàn)具體功能的類BussinessService
import java.lang.reflect.*;
import org.hibernate.*;
import org.hibernate.cfg.*;
import java.io.*;
import java.sql.*;
import java.util.*;
public class BussinessService {
public static SessionFactory sessionFactory;
static{
try{
Configuration config = new Configuration().configure();
sessionFactory = config.buildSessionFactory();
}catch(Exception e){
e.printStackTrace();
}
}
public void findAllObjects(String className){
Session session = sessionFactory.openSession();
Transaction tx = null;
try{
tx = session.beginTransaction();
List objects = session.createQuery("from "+className).list();
for(Iterator it = objects.iterator();it.hasNext();){
Long id = new Long(0);
IncrementTester xx = (IncrementTester)it.next();
id=xx.getId();
System.out.println("ID of "+className+":"+id+" name: "+xx.getName());
}
tx.commit();
}catch(Exception e){
e.printStackTrace();
}finally{
session.close();
}
}
public void saveObject(Object object){
Session session = sessionFactory.openSession();
Transaction tx = null;
try{
tx = session.beginTransaction();
session.save(object);
tx.commit();
}catch(Exception e){
e.printStackTrace();
if(tx != null){
tx.rollback();
}
}finally{
session.close();
}
}
public void deleteAllObject(String className){
Session session = sessionFactory.openSession();
Transaction tx = null;
try{
tx = session.beginTransaction();
Query query=session.createQuery("delete from "+className);
query.executeUpdate();
tx.commit();
}catch(Exception e){
e.printStackTrace();
if(tx!=null){
tx.rollback();
}
}finally{
session.close();
}
}
}
實現(xiàn)主函數(shù):
public class test {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String name="IncrementTester";
BussinessService aa = new BussinessService();
aa.deleteAllObject(name);
Object o1 = null;
try {
o1 = Class.forName(name).newInstance();
((IncrementTester)o1).setName("caijie");
aa.saveObject(o1);
o1 = Class.forName(name).newInstance();
((IncrementTester)o1).setName("gufeng");
aa.saveObject(o1);
} catch (Exception e) {
e.printStackTrace();
}
aa.findAllObjects(name);
}
}
hibernate配置文件:hibernate.cfg.xml
PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
org.hibernate.dialect.MySQLDialect
com.mysql.jdbc.Driver
jdbc:mysql://localhost:3306/test
root
root
true
增加相應(yīng)的庫,運行后成功得到結(jié)果:
Hibernate: delete from INCREMENT_TESTR Hibernate: select max(ID) from INCREMENT_TESTR Hibernate: insert into INCREMENT_TESTR (NAME, ID) values (?, ?) Hibernate: insert into INCREMENT_TESTR (NAME, ID) values (?, ?) Hibernate: select incrementt0_.ID as ID0_, incrementt0_.NAME as NAME0_ from INCREMENT_TESTR incrementt0_ ID of IncrementTester:1 name: caijie ID of IncrementTester:2 name: gufeng
希望本文所述對大家的JSP程序設(shè)計有所幫助。
相關(guān)文章
web開發(fā)之對比時間大小的工具函數(shù)的實例詳解
這篇文章主要介紹了web開發(fā)之對比時間大小的工具函數(shù)的實例詳解的相關(guān)資料,這里提供實現(xiàn)代碼幫助大家學習理解這部分知識,需要的朋友可以參考下2017-08-08
JSP中的字符替換函數(shù) str_replace() 實現(xiàn)!
JSP中的字符替換函數(shù) str_replace() 實現(xiàn)!...2006-10-10
Cookie的使用及保存中文并用Cookie實現(xiàn)購物車功能
Cookie是服務(wù)器存放在客戶端的一些數(shù)據(jù),比如密碼。下面為大家介紹下使用Cookie保存中文并用Cookie實現(xiàn)購物車功能,喜歡的朋友可以學習下2013-08-08
解決request.getParameter取值后的if判斷為NULL的問題
這篇文章主要介紹了解決request.getParameter取值后的if判斷為NULL的問題,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2022-03-03

