Persistence in computer programming refers to the capability of saving data outside the application memory.
I'm trying to setup JPA with a hibernate implementation for the first time with this test project. Ran into the …
java hibernate jpa persistenceHow can I map a Map in JPA without using Hibernate's classes?
java hibernate mapping persistenceI'm curious and need to find this answer quick. Google won't help much. The Java Persistence API has these properties …
java jpa persistenceI have a one-to-many relationship modeled using join table: create table t1 (id int primary key, name varchar(10) /*...*/); create table …
java jpa persistenceWhat and when is the best scenario to use DiscriminatorValue annotation in hibernate?
java hibernate jpa persistenceI have an in-memory data source: java.sql.Connection c = DriverManager.getConnection("jdbc:hsqldb:mem:testdb", "sa", ""); emf = Persistence.createEntityManagerFactory("…
hibernate jpa persistence jpa-2.0 hsqldbI have queries as below: What is the difference of these two? Are both of these supported by all databases? …
java spring jpa persistence jtaDoes remove(Object entity) method of EntityManager work only on those objects got from find() method? I have following code …
java jpa persistenceI have been suffering from infamous hibernate exception org.hibernate.LazyInitializationException: could not initialize proxy - no Session Now the …
java hibernate jpa persistence lazy-initializationCan someone help me write the dependency for javax.persistence. I have googled it but nothing worked. I bumped into …
java eclipse spring-mvc maven persistence