Hibernate

adplus-dvertising
Using Primary Key-Foreign Key Relation
Previous Home Next

Consider two classes first Address(owned object) and second Person(owner object).In address there are three fields ,id,street and city. And in person table it contains id,name,address.

hibernate.cfg.xml

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<!-- r4r.co.in. -->
<hibernate-configuration>
<session-factory>
<property name="dialect">org.hibernate.dialect.Oracle9Dialect</property>
<property name="connection.url">jdbc:oracle:thin:@localhost:1521:xe</property>
<property name="connection.username">system</property>
<property name="connection.password">system</property>
<property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
<mapping resource="PkFk.hbm.xml"/>
</session-factory>
</hibernate-configuration>
Previous Home Next