HHH-7575 - Hibernate Getting Started Guide refers to incorrect tutorial directory for annotations tutoral

(cherry picked from commit 094c08cd08)
This commit is contained in:
Steve Ebersole 2012-09-06 08:41:37 -05:00
parent c5a1554ec8
commit b879c6ab7d
1 changed files with 2 additions and 3 deletions

View File

@ -4,7 +4,7 @@
<title>Tutorial Using Native Hibernate APIs and Annotation Mappings</title> <title>Tutorial Using Native Hibernate APIs and Annotation Mappings</title>
<para> <para>
This tutorial is located within the download bundle under <filename>basic</filename>. This tutorial is located within the download bundle under <filename>annotations</filename>.
</para> </para>
<itemizedlist> <itemizedlist>
<title>Objectives</title> <title>Objectives</title>
@ -55,8 +55,7 @@ public class Event {
It functions the same as the <varname>class</varname> mapping element discussed in <xref It functions the same as the <varname>class</varname> mapping element discussed in <xref
linkend="hibernate-gsg-tutorial-basic-mapping"/>. Additionally the linkend="hibernate-gsg-tutorial-basic-mapping"/>. Additionally the
<interfacename>@javax.persistence.Table</interfacename> annotation explicitly specifies the table <interfacename>@javax.persistence.Table</interfacename> annotation explicitly specifies the table
name. Without this specification, the default table name would be <literal>EVENT</literal>).<!-- It is a name. Without this specification, the default table name would be <database class="table">EVENT</database>).
literal value, not a table as a table -->
</para> </para>
<example xml:id="hibernate-gsg-tutorial-annotations-entity-id"> <example xml:id="hibernate-gsg-tutorial-annotations-entity-id">