Related questions
How generate DAO with Hibernate Tools in Eclipse?
I'm using :
Eclipse Java EE IDE Web Developers
version:Indigo Release
with hibernate tools, i'm new to hibernate in Eclipse, so i learn how configure the hibernate and generate the POJO's with annotations (which i think is better than .xml).
…
Hibernate table not mapped error in HQL query
I have a web application that use Hibernate to make CRUD operations over a database. I got an error saying that the table is not mapped. See the Java files:
Error message:
org.springframework.orm.hibernate3.HibernateQueryException: Books is not …
Eclipse error on mapping with @EmbeddedId
I have an entity with composite key so I use the @Embeddable and @EmbeddedId annotations.
Embeddable class looks like this :
@Embeddable
public class DitaAdminAccountSkillPK implements Serializable {
@ManyToOne
@JoinColumn(name = "admin_id")
private DitaAdmin admin;
@ManyToOne
@JoinColumn(name = "account_id")
private …