About 5,730,000 results
Open links in new tab
  1. java - How to generate the JPA entity Metamodel? - Stack Overflow

    How to generate the JPA Criteria Metamodel The hibernate-jpamodelgen tool provided by Hibernate ORM can be used to scan the project entities and generate the JPA Criteria …

  2. java - What is a JPA implementation? - Stack Overflow

    Dec 18, 2010 · The Java Persistence API (JPA) is a Java programming language application programming interface specification that describes the management of relational data in …

  3. How to map a map JSON column to Java Object with JPA

    The JPA AttributeConverter is way too limited to map JSON object types, especially if you want to save them as JSON binary. You don’t have to create a custom Hibernate Type to get JSON …

  4. How does the JPA @SequenceGenerator annotation work

    Q3. If JPA generates numeric value on his own, then how does the JPA implementation know which value to generate next? Does it consult with the database first to see what value was …

  5. java - How to view the SQL queries issued by JPA? - Stack Overflow

    entityManager.find(Customer.class, customerID); How can I see the SQL query for this call? Assuming I don't have access to database server to profile/monitor the calls, is there way to …

  6. java - JPA vs ORM vs Hibernate? - Stack Overflow

    JPA is an API that allows us to perform ORM operations in Java. Thanks to Hibernate, we can establish a connection between objects and the table in the database.

  7. Difference between JTA, JPA and plain JDBC in hibernate

    Mar 24, 2022 · JPA is a standard for Java object-relational mapping - it specifies a set of annotations and an interface - EntityManager to perform persistence operations with the …

  8. java - Why does JPA have a @Transient annotation? - Stack Overflow

    Jan 28, 2010 · Java has the transient keyword. Why does JPA have @Transient instead of simply using the already existing java keyword?

  9. java - Setting default values for columns in JPA - Stack Overflow

    Oct 13, 2008 · Is it possible to set a default value for columns in JPA, and if, how is it done using annotations?

  10. java - Getting Database connection in pure JPA setup - Stack …

    Aug 16, 2010 · We have a JPA application (using hibernate) and we need to pass a call to a legacy reporting tool that needs a JDBC database connection as a parameter. Is there a …