如何在映射文件中指定foreign key
?在以下映射文件中,id
是外键。我该如何指定?
<hibernate-mapping>
<class name="org.suhail.pojo.Scheduled" table="scheduled">
<id name="sid" column="sid" type="integer">
<generator class="increment" />
</id>
<property name="id" column="id" type="integer" />
<property name="sdate" column="sdate" type="date"/>
<property name="stime" column="stime" type="time" />
<property name="tweet" column="tweet" type="string" />
</class>
</hibernate-mapping>