Hibernate is a collection of related projects enabling developers to utilize POJO-style domain models in their applications in ways extending well beyond Object/Relational Mapping.
0
votes
1answer
102 views
+50
EntityManager remove() call not updating database
I have a basic Java project setup using JPA. I have classes which are annotated properly and can insert data into my PostgreSQL database without any trouble.
My question... and I may find that I ...
1
vote
3answers
79 views
+100
Initial SessionFactory creation failed.java.lang.NoClassDefFoundError: org/hiber nate/cfg/Configuration
I created a project in Eclipse and executed it succesfuly (It's a normal project, without Maven or Beans, really simple), I created a .jar with the project and tried to execute it but it throws the ...
0
votes
1answer
63 views
+50
Collection not loaded if bean was loaded before as relation
I have the classes A, B and C. A has a property to B (manytoone) and B has a property to C (onetomany). The classes look like the following ones (shortend to the relevant properties):
class A {
...
1
vote
1answer
57 views
+50
QueryDSL joins generate invalid SQL
I'm trying to convert the following SQL query in QueryDSL (JPA, Hibernate provider, Oracle database):
select c.id
, c.name
, count(coalesce(s.company_id_source, t.company_id_target))
...
