Questions tagged [mappingexception]
54 questions
0
votes
1 answer
Unknown entity: org.hibernate.impl.SessionImpl
Hi I am getting below error during session.save(). I didn't know why it is coming. I am not using annotations. I am learning it from basics. Please look at below error. I have spend more than 2 hours on this, but couldn't find the solution:
Aug 17,…

Krunal
- 1
0
votes
1 answer
org.hibernate.MappingException: Could not determine type for: java.util.List, at table: Schedule_assignedRoles, for columns: assignedRoles
I need a help, I'm trying to use a Map, but I got this error:
Caused by: org.hibernate.MappingException: Could not determine type for: java.util.List, at table: Schedule_assignedRoles, for columns: [org.hibernate.mapping.Column(assignedRoles)]
…

renanlessa
- 3
- 1
- 4
0
votes
2 answers
Caused by: org.hibernate.MappingException: Could not determine type for: Timestamp, for columns: [org.hibernate.mapping.Column(***)]
Using hibernate.. I am learning the technology at the moment.. Not sure where I m wrong...Pls guide on this..
I see the above error when trying to map a column from db of type - TIMESTAMP() to Pojo variable...
I tried changing the variable type to…

Sarronya
- 353
- 2
- 8
- 19
0
votes
1 answer
org.hibernate.MappingException: No Dialect mapping for JDBC type: 1632665994
I encounter this problem when I develop a web app. I use hibernate 4.3.8.Final and JPA2.1; I don't know what's wrong. I turn the 'org.hibernate' logger in my logback under 'DEBUG' level and append to a file, nothing useful I can find in the log…

John Han
- 23
- 1
- 5
0
votes
0 answers
Issues with HQL when performing search using "Exists"
I'm having trouble translating this sql:
select * from documentos d where
exists (select 1 from documento_timestamp dt
where d.id_documento = dt.id_documento
and dt.fecha between…

Alejo
- 787
- 2
- 9
- 15
0
votes
1 answer
org.dozer.MappingException: error
i have two pojo class which contain same field private String nameId;
my dozermapping.xml file contain

user2413093
- 1
- 2
- 3
0
votes
2 answers
when use @MappedSuperclass,@Entity,@manytomany Could not determine type for: java.util.Set
@MappedSuperclass
public abstract class IdEntity /*extends AbstractPersistable*/
implements Serializable,Cloneable {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
protected Integer id;
public Integer getId()…

user1511613
- 13
- 2
0
votes
1 answer
org.hibernate.MappingException: No Dialect mapping for JDBC type: -8
I am getting below error while using createSqlQuery(query); method of hibernate.
error: org.hibernate.MappingException: No Dialect mapping for JDBC type: -8

Raju
- 11
- 1
- 4
0
votes
2 answers
org.hibernate.MappingException: Could not determine type for: java.util.Set version issue?
Tough i see lot of matching suggestion question, None of the suggestions seem to answer my question. I am newbie to Hibernate and just started with annotation. Slightly comfrtable with XML configuration. I was going through "Harnessing hibernate"…

Kiran
- 29
- 1
- 5