Tagged Questions
The mappingexception tag has no wiki summary.
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
712 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
1answer
76 views
NHibernate.MappingException occurs when using nullable types
I am using nhibernate to access my database and andromda generates my mapping files.
All is working fine, as long as I am not using nullable datatypes.
What I am trying is to have an entity with a ...
0
votes
1answer
229 views
Fluent-NHibernate mapping throws “Bad identifier type: System.Guid”
I would like some assistance on how to troubleshoot a mappingexception that provides no detail. Er, OK -- there's plenty of detail just not a class or property.
For starters, I just upgraded to NH3.1 ...
0
votes
0answers
192 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 ...