Questions tagged [hibernate-entitymanager]

Hibernate EntityManager implements the programming interfaces and lifecycle rules as defined by the JPA 2.0 specification.

Hibernate EntityManager implements the programming interfaces and lifecycle rules as defined by the JPA 2.0 specification. For more informatio refer the link.

288 questions
-1
votes
1 answer

Foreign Key in One to One RelationShip Hibernate

I have an one to one relationship between the following 2 entities: @Entity @Table(name = "user") public class User { @Id @Column(name="id") private String id; @Column private String name; @Column private String…
-1
votes
1 answer

Application Deployment failing on cloud foundry due to entityManagerFactory bean creation failed

I am facing below error while deploying spring boot microservice on cloud foundry: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource…
-1
votes
2 answers

EnityManager won't delete records if I put it in a Runnable

I searched for some answer to my question on this site; but failed on every turn. I can delete fine if I don't put this in a ExecutorService, but if I do, it doesn't delete. No error occurs just the records are still in the database. Please advise. …
Rika
  • 768
  • 1
  • 5
  • 16
1 2 3
19
20