java-tutorials/persistence-modules/java-jpa-3/README.md

17 lines
1.1 KiB
Markdown
Raw Normal View History

## JPA in Java
This module contains articles about the Java Persistence API (JPA) in Java.
2020-08-20 06:21:02 -04:00
### Relevant Articles:
- [JPA Entity Equality](https://www.baeldung.com/jpa-entity-equality)
2020-11-11 08:32:16 -05:00
- [Ignoring Fields With the JPA @Transient Annotation](https://www.baeldung.com/jpa-transient-ignore-field)
2020-11-18 04:00:13 -05:00
- [Defining Indexes in JPA](https://www.baeldung.com/jpa-indexes)
2020-11-18 04:09:46 -05:00
- [JPA CascadeType.REMOVE vs orphanRemoval](https://www.baeldung.com/jpa-cascade-remove-vs-orphanremoval)
2020-12-09 05:17:32 -05:00
- [A Guide to MultipleBagFetchException in Hibernate](https://www.baeldung.com/java-hibernate-multiplebagfetchexception)
2021-01-20 09:46:34 -05:00
- [How to Convert a Hibernate Proxy to a Real Entity Object](https://www.baeldung.com/hibernate-proxy-to-real-entity-object)
2021-05-19 13:16:34 -04:00
- [Returning an Auto-Generated Id with JPA](https://www.baeldung.com/jpa-get-auto-generated-id)
2023-05-27 07:27:24 -04:00
- [How to Return Multiple Entities in JPA Query](https://www.baeldung.com/jpa-return-multiple-entities)
2021-06-03 10:41:19 -04:00
- [Defining Unique Constraints in JPA](https://www.baeldung.com/jpa-unique-constraints)
2021-09-08 12:43:30 -04:00
- [Connecting to a Specific Schema in JDBC](https://www.baeldung.com/jdbc-connect-to-schema)