自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

Hibernate入門教程 Hibernate關(guān)系映射詳解

開發(fā) 后端
Hibernate的關(guān)系映射是1對1的關(guān)系。本文將結(jié)合具體的實例代碼,向您介紹Hibernate關(guān)系映射中的1對1關(guān)系

Hibernate關(guān)系映射是1對1one-to-one。

1對1的關(guān)系在現(xiàn)實中很常見。比方說:人和身份證。1個身份證對應(yīng)著一個身份證,一個身份證對應(yīng)著一個人。那么,我們就以此為原型。進(jìn)行代碼編寫。

建立實體模型如右:

Hibernate教程 
根據(jù)模型,創(chuàng)建數(shù)據(jù)庫:
    useHibernateQuickUse;
droptableifexistsPerson;
droptableifexistsCard;
createtableCard(
idvarchar(32)primarykey,
cardDescvarchar(128)notnull
);
createtablePerson(
idvarchar(32)primarykey,
namevarchar(32)notnull,
card_idvarchar(32)notnull,
foreignkey(card_id)referencesCard(id)
);


Java代碼如下:

Person類

   packageorg.py.hib.relation.one2one;
/**
*Personentity.
*/
@SuppressWarnings("serial")
publicclassPersonimplementsjava.io.Serializable
{
privateStringid;
privateStringname;
privateCardcard;
publicPerson()
{
}
publicStringgetId()
{
returnthis.id;
}
publicvoidsetId(Stringid)
{
this.id=id;
}
publicCardgetCard()
{
returnthis.card;
}
publicvoidsetCard(Cardcard)
{
this.card=card;
}
publicStringgetName()
{
returnthis.name;
}
publicvoidsetName(Stringname)
{
this.name=name;
}
}

Card類:
    packageorg.py.hib.relation.one2one;
/**
*Cardentity.
*/
@SuppressWarnings("serial")
publicclassCardimplementsjava.io.Serializable
{
privateStringid;
privateStringcardDesc;
publicCard()
{
}
publicStringgetId()
{
returnthis.id;
}
publicvoidsetId(Stringid)
{
this.id=id;
}
publicStringgetCardDesc()
{
returncardDesc;
}
publicvoidsetCardDesc(StringcardDesc)
{
this.cardDesc=cardDesc;
}
}


XML映射文件如下:

Person.hbm.xml

   
"


cascade="all"column="card_id"/>


今天講的是one-to-one配置。但是,此處用的是many-to-one,這個是什么原因呢?其實,one-to-one就是特殊的many-to-one。

Card.hbm.xml:

   
"

 

#p#

測試代碼如下:

One2OneTest.java

    packageorg.py.hib.relation.one2one;
importjunit.framework.Assert;
importjunit.framework.TestCase;
importorg.hibernate.Session;
importorg.hibernate.SessionFactory;
importorg.hibernate.Transaction;
importorg.hibernate.cfg.Configuration;
importorg.junit.After;
importorg.junit.Before;
publicclassOne2OneTestextendsTestCase
{
privateSessionFactoryfactory;
privateStringm_name="ryanpoy";
privateStringm_name2="ryanpoy2";
privateStringm_cardDesc1="desc_1";
privateStringm_cardDesc2="desc_2";
@Before
publicvoidsetUp()throwsException
{
Configurationconf=newConfiguration().configure();
factory=conf.buildSessionFactory();
}
/**
*測試添加
*@throwsException
*/
publicvoidtestSave()throwsException
{
System.out.println("\n===testsave===");
Cardcard=newCard();
card.setCardDesc(m_cardDesc1);
Personperson=newPerson();
person.setName(m_name);//設(shè)置用戶名=m_name
person.setCard(card);
Sessionsession=null;
Transactiontran=null;
try
{
session=factory.openSession();
tran=session.beginTransaction();
session.save(person);
tran.commit();
Assert.assertEquals(person.getId()!=null,true);
Assert.assertEquals(card.getId()!=null,true);
}catch(Exceptionex)
{
tran.rollback();
throwex;
}finally
{
if(session!=null)
{
try
{
session.close();
}catch(Exceptionex)
{
//nothingtodo
}finally
{
if(session!=null)
session=null;
}
}
}
}
/**
*測試查詢
*@throwsException
*/
publicvoidtestFind()throwsException
{
System.out.println("\n===testfind===");
Sessionsession=null;
try
{
session=factory.openSession();
Personperson=(Person)session.createQuery("fromPerson").list().get(0);
Assert.assertEquals(true,person.getId()!=null);
Assert.assertEquals(m_name,person.getName());
Assert.assertEquals(true,person.getCard().getId()!=null);
Assert.assertEquals(m_cardDesc1,person.getCard().getCardDesc());
}catch(Exceptionex)
{
throwex;
}finally
{
if(session!=null)
{
try
{
session.close();
}catch(Exceptionex)
{
//nothingtodo
}finally
{
if(session!=null)
session=null;
}
}
}
}
/**
*測試修改
*@throwsException
*/
publicvoidtestModify()throwsException
{
System.out.println("\n===testmodify===");
Sessionsession=null;
Transactiontran=null;
try
{
session=factory.openSession();
tran=session.beginTransaction();
Personperson=(Person)session.createQuery("fromPerson").list().get(0);
person.setName(m_name2);//修改用戶名=m_name2.(原來用戶名=m_name)
person.getCard().setCardDesc(m_cardDesc2);//修改cardDesc為m_cardDesc2(原來是:m_cardDesc1)
tran.commit();
}catch(Exceptionex)
{
throwex;
}finally
{
if(session!=null)
{
try
{
session.close();
}catch(Exceptionex)
{
//nothingtodo
}finally
{
if(session!=null)
session=null;
}
}
}
/*
*修改后再查詢
*/
System.out.println("\n===testfindaftermodify===");
try
{
session=factory.openSession();
Personperson=(Person)session.createQuery("fromPerson").list().get(0);
Assert.assertEquals(true,person.getId()!=null);
Assert.assertEquals(m_name2,person.getName());
Assert.assertEquals(true,person.getCard().getId()!=null);
Assert.assertEquals(m_cardDesc2,person.getCard().getCardDesc());
}catch(Exceptionex)
{
throwex;
}finally
{
if(session!=null)
{
try
{
session.close();
}catch(Exceptionex)
{
//nothingtodo
}finally
{
if(session!=null)
session=null;
}
}
}
}
/**
*測試刪除
*@throwsException
*/
publicvoidtestDelete()throwsException
{
System.out.println("\n===testdelete===");
Sessionsession=null;
Transactiontran=null;
try
{
session=factory.openSession();
tran=session.beginTransaction();
Personperson=(Person)session.createQuery("fromPerson").list().get(0);
session.delete(person);
tran.commit();
}catch(Exceptionex)
{
throwex;
}finally
{
if(session!=null)
{
try
{
session.close();
}catch(Exceptionex)
{
//nothingtodo
}finally
{
if(session!=null)
session=null;
}
}
}
/*
*刪除后再查詢
*/
System.out.println("\n===testfindafterdelete===");
try
{
session=factory.openSession();
Integernum=(Integer)session.createQuery("fromPerson").list().size();
Assert.assertEquals(0,num.intValue());
num=(Integer)session.createQuery("fromCard").list().size();
Assert.assertEquals(0,num.intValue());
}catch(Exceptionex)
{
throwex;
}finally
{
if(session!=null)
{
try
{
session.close();
}catch(Exceptionex)
{
//nothingtodo
}finally
{
if(session!=null)
session=null;
}
}
}
}
/**
*
*/
@After
publicvoidtearDown()throwsException
{
factory.close();
}
}


運行test,測試成功.

在Hibernateone-to-one關(guān)系映射中,其實還有一種方式,即:唯一主見關(guān)聯(lián)。但是,我一直傾向于上面的這種形式,所以,唯一主見關(guān)聯(lián)的舊部介紹了。

您正在閱讀: Hibernate入門教程 Hibernate關(guān)系映射詳解

【編輯推薦】

  1. Hibernate單元測試的方法:HSQLDB
  2. Hibernate的兩種配置文件格式
  3. Hibernate/JPA成功使用的十點心得
責(zé)任編輯:張攀 來源: 教程資料網(wǎng)
相關(guān)推薦

2009-09-23 13:26:10

Hibernate對象

2009-09-25 12:59:52

Hibernate映射

2009-06-18 14:22:06

Hibernate多對Hibernate

2012-02-08 12:17:38

HibernateJava

2012-02-02 16:13:29

HibernateJava

2012-05-30 15:03:43

ibmdw

2009-09-23 17:34:18

Hibernate映射

2009-09-25 10:00:47

Hibernate映射

2012-02-03 11:17:33

HibernateJava

2012-02-03 10:07:04

HibernateJava

2009-09-22 15:10:22

Hibernate映射

2012-02-08 13:34:08

HibernateJava

2012-02-03 10:54:50

HibernateJava

2009-09-21 17:33:50

Hibernate基礎(chǔ)

2009-09-24 17:24:20

Hibernate S

2009-09-25 12:31:13

Hibernate映射

2009-09-25 14:20:28

Hibernate繼承映射

2009-07-02 09:40:14

Hibernate的繼

2009-09-25 09:46:02

Hibernate高級

2009-09-29 15:58:22

Hibernate映射
點贊
收藏

51CTO技術(shù)棧公眾號