About Java and JRuby Development
JEE, Spring, Guice
Hibernate, Java Persistence (JPA)
and various Web Frameworks

@org.hibernate.annotations.Table

hibernate buch cover klein

Extract of the annotation reference in the Hibernate Developer Guide by example


Extensive, easy-to-follow introduction to Hibernate 3 including complete working examples. Integration of Hibernate with other technologies like Spring, EJB3, Struts and JavaServer Faces (MyFaces) is explained.


It is available as PDF in English language.
A German paper book was published by the Galileo Verlag.


Get more information.

@org.hibernate.annotations.Table(

Hibernate Erweiterung zu EJB 3, erstellt einen Index,
wenn Hibernate Tabellen erzeugt. Kann mit den Annotations
javax.persistence.Table</i><b> u</b>nd <i>javax.persistence.SecondaryTable verwendet
werden.

appliesTo = “tableName”,

Name der Datenbanktabelle

indexes = { @Index(name = “forest_idx”,
columnNames = {"indexedColumn"}) }

ein Array von @Index

)