You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Hibernate Composite Primary Key Example with Spring Boot and JPA
2
+
3
+
Read the Tutorial - https://www.callicoder.com/hibernate-spring-boot-jpa-composite-primary-key-example/
4
+
5
+
## Setup the Application
6
+
7
+
1. Create a database named `hibernate_composite_pk_demo`.
8
+
9
+
2. Open `src/main/resources/application.properties` and change `spring.datasource.username` and `spring.datasource.password` properties as per your MySQL installation.
10
+
11
+
3. Type `mvn spring-boot:run` from the root directory of the project to run the application.
# Hibernate Embeddable Type Example with Spring Boot and JPA
2
+
3
+
Read the Tutorial - https://www.callicoder.com/hibernate-spring-boot-jpa-embeddable-demo/
4
+
5
+
## Setup the Application
6
+
7
+
1. Create a database named `hibernate_embeddable_demo`.
8
+
9
+
2. Open `src/main/resources/application.properties` and change `spring.datasource.username` and `spring.datasource.password` properties as per your MySQL installation.
10
+
11
+
3. Type `mvn spring-boot:run` from the root directory of the project to run the application.
# Hibernate Many to Many Mapping Example with Spring Boot and JPA
2
+
3
+
Read the Tutorial - https://www.callicoder.com/hibernate-spring-boot-jpa-many-to-many-mapping-example/
4
+
5
+
## Setup the Application
6
+
7
+
1. Create a database named `hibernate_many_to_many_demo`.
8
+
9
+
2. Open `src/main/resources/application.properties` and change `spring.datasource.username` and `spring.datasource.password` properties as per your MySQL installation.
10
+
11
+
3. Type `mvn spring-boot:run` from the root directory of the project to run the application.
# Hibernate One to Many Mapping Example with Spring Boot and JPA
2
+
3
+
Read the Tutorial - https://www.callicoder.com/hibernate-spring-boot-jpa-one-to-many-mapping-example/
4
+
5
+
## Setup the Application
6
+
7
+
1. Create a database named `hibernate_one_to_many_demo`.
8
+
9
+
2. Open `src/main/resources/application.properties` and change `spring.datasource.username` and `spring.datasource.password` properties as per your MySQL installation.
10
+
11
+
3. Type `mvn spring-boot:run` from the root directory of the project to run the application.
# Hibernate One to One Mapping Example with Spring Boot and JPA
2
+
3
+
Read the Tutorial - https://www.callicoder.com/hibernate-spring-boot-jpa-one-to-one-mapping-example/
4
+
5
+
## Setup the Application
6
+
7
+
1. Create a database named `hibernate_one_to_one_demo`.
8
+
9
+
2. Open `src/main/resources/application.properties` and change `spring.datasource.username` and `spring.datasource.password` properties as per your MySQL installation.
10
+
11
+
3. Type `mvn spring-boot:run` from the root directory of the project to run the application.
0 commit comments