Tagged Questions

3
votes
2answers
6k views

Hibernate: unmapped class association exception

I know this should be a pretty elementary issue to fix, but 1) I'm relatively new to Hibernate, and 2) the fixes I've found don't (seem to) apply here. Here is the exception I am getting: ...
2
votes
1answer
151 views

Hibernate MappingException with inheritance of a concrete non-domain class in Grails

The Scenario I have a need to represent an object in two different contexts. One context should not persist and the other should. The persistent objects are actual data pulled from another system. ...
1
vote
2answers
713 views

Hibernate MappingException

I'm getting this Hibernate error: org.hibernate.MappingException: Could not determine type for: a.b.c.Results$BusinessDate, for columns: [org.hibernate.mapping.Column(businessDate)] The class is ...
0
votes
0answers
193 views

Exception while many-to-one relation org.hibernate.MappingException: Could not determine type for

i want to write a simple many-to-one ORM using hibernate. I have tow tables, user and location. Location contains country names one of which i want to refer in user class. public class User extends ...