https://github.com/cepr0/sb-entity-inheritance-demo
Spring Data JPA / Hibernate entity inheritance example
https://github.com/cepr0/sb-entity-inheritance-demo
entity inheritance spring spring-boot spring-data-jpa
Last synced: 9 months ago
JSON representation
Spring Data JPA / Hibernate entity inheritance example
- Host: GitHub
- URL: https://github.com/cepr0/sb-entity-inheritance-demo
- Owner: Cepr0
- Created: 2019-08-20T11:57:11.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-08-20T19:50:20.000Z (almost 7 years ago)
- Last Synced: 2025-03-11T07:19:09.425Z (over 1 year ago)
- Topics: entity, inheritance, spring, spring-boot, spring-data-jpa
- Language: Java
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Spring Data JPA / Hibernate entity inheritance example
_An example of using hibernate [entity inheritance][1]_
- [SINGLE_TABLE][2]
- [JOINED][3]
**Additional info**
- [How to log JDBC queries and their results][4]
- [How to access H2 database from IDE][5]
[1]: https://docs.jboss.org/hibernate/orm/current/userguide/html_single/Hibernate_User_Guide.html#entity-inheritance
[2]: https://github.com/Cepr0/sb-entity-inheritance-demo/tree/InheritanceType.SINGLE_TABLE/src/main/java/io/github/cepr0/demo
[3]: https://github.com/Cepr0/sb-entity-inheritance-demo/tree/InheritanceType.JOINED/src/main/java/io/github/cepr0/demo
[4]: https://stackoverflow.com/a/45346996
[5]: https://stackoverflow.com/a/43276769