The Hibernate docs state:
Quote:
Depending on whether you annotate fields or methods, the access type used by Hibernate will be field or property. The EJB3 spec requires that you declare annotations on the element type that will be accessed, i.e. the getter method if you use property access, the field if you use field access. Mixing annotations in both fields and methods should be avoided. Hibernate will guess the access type from the position of @Id or @EmbeddedId.
So thats where I screwed up. I had the @Id annotation for the field in BaseEntity not on the getter. Cant believe 3 hours of my life..............