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
0
votes
2 answers

EntityManager doesn't translate camel case to snake case

I'm using SpringBoot 2.7.0 and trying to set an entity manager cause I have 2 databases. But the entityManager that I instantiated doesn't work like default one. It doesn't translate camel case to snake case for the properties of entity when it…
genki98
  • 680
  • 1
  • 11
  • 31
0
votes
1 answer

How to use the new database credentials to connect with database without restarting the application

I have a Spring application which connects with a database using ComboPooledDataSource, LocalContainerEntityManagerFactoryBean and JpaTransactionManager. The application works fine. Following is my configuration.