cfg.xml. , XML.
:
cfg.xml, , , .
XML- , hbm.xml
<mapping class ="models.Category" />
-
<mapping resource="models/Book.hbm.xml></mapping>
hbm.xml .
:
<hibernate-mapping>
<class name="models.Book" table="Book" catalog="your database name">
<id name="bookId" type="java.lang.Integer">
<column name="BOOKID" />
<generator class="identity" />
</id>
<property name="authorName" type="string">
<column name="AUTHOR_NAME" length="10" not-null="true" unique="true" />
</property>
</class>//all the database mappings
</hibernate-mapping>
, .