An open API service indexing awesome lists of open source software.

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

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