-
Notifications
You must be signed in to change notification settings - Fork 12
Home
Guillaume Le Cousin edited this page Apr 9, 2022
·
3 revisions
Installation and configuration steps can be found on the README.
How to create entity classes mapped to a database table, and access it using a Spring Data repository.
How to specify a primary key or a composite id, how to generate primary key using auto-increment or a database sequence.
How to link entities using foreign keys and join tables, to implement one-to-one, one-to-many and many-to-many relationships.
How linked entities can be loaded from database on demand.
How to make a single SELECT query with joins and fetch linked entities in relationships.
How to generate the database schema corresponding to your entities.