Every example I found uses @Id, but when I try to write my code, many of the annotations I'm used to have disappeared, there are annotations like @Index, and @Entity options have changed. I looked through the Hibernate documentation and can't find anything on how to change all my annotations, so I'm looking at a dummy version?
Even @Column () with the name left, it's very confusing, I use Hibernate 3, but it's hard for me to believe that they went through and broke EVERY annotation that they used to support.
I downloaded the latest version of Hibernate3.jar, that everything I turned on while looking at the JAR, I see annotation packages
import org.hibernate.annotations.Entity;
import org.hibernate.annotations.Table;
source
share