Foreign Algorithm
- This primary key generation algorithm is able to generate primary key values on the basis of the foreign key of the present table.
- This algorithm is able to generate primary key values of the data types like short, int and long.
- This algorithm is not required any input parameters to generate primary key values.
- This algorithm is represented by Hibernate software in the form of a short name “foreign” and in the form of a predefined class like “org. hibernate.id. ForeignGenerator”.
E.g
<?xml version = "1.0" encoding = "utf-8"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN" "http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"> <hibernate-mapping> <class name="com.ashok.hibernate.sample.model.Employee" table="emp"> <id name="id" type="int" column="id"> <generator class="org.hibernate.id.ForeignGenerator"/> </id> <property name="empName" column="emp_name" type="string" /> <property name="address" column="address" type="string" /> <property name="salary" column="salary" type="float" /> </class> </hibernate-mapping>
Foreign Algorithm