Skip to content

Commit 8124653

Browse files
Bipinkumar27dkapil
andauthored
JAVA-41267 Moved code of article spring-boot-jpa-storing-postgresql-j… (#18377)
* JAVA-41267 Moved code of article spring-boot-jpa-storing-postgresql-jsonb and updated Readme * JAVA-41267 Moved code of article spring-data-jpa-not-managed-type-exception and Updated Readme --------- Co-authored-by: Dhawal Kapil <[email protected]>
1 parent bae5366 commit 8124653

26 files changed

+16
-3
lines changed

persistence-modules/spring-data-jpa-repo-4/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,5 @@
66
- [TRUNCATE TABLE in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-truncate-table)
77
- [When to Use the getReferenceById() and findById() Methods in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-getreferencebyid-findbyid-methods)
88
- [Implementing Persistable-Only Entities in Spring Data JPA](https://www.baeldung.com/spring-data-persistable-only-entities)
9-
- [Storing PostgreSQL JSONB Using Spring Boot and JPA](https://www.baeldung.com/spring-boot-jpa-storing-postgresql-jsonb)
10-
- [“Not a Managed Type” Exception in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-not-managed-type-exception)
119
- [Solving Spring Data JPA ConverterNotFoundException: No converter found](https://www.baeldung.com/spring-jpa-converter-exception)
1210
- More articles: [[<-- prev]](../spring-data-jpa-repo-3)

persistence-modules/spring-data-jpa-repo/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ This module contains articles about repositories in Spring Data JPA
66
- [Spring Data – CrudRepository save() Method](https://www.baeldung.com/spring-data-crud-repository-save)
77
- [How to Access EntityManager with Spring Data](https://www.baeldung.com/spring-data-entitymanager)
88
- [LIKE Queries in Spring JPA Repositories](https://www.baeldung.com/spring-jpa-like-queries)
9+
- [Storing PostgreSQL JSONB Using Spring Boot and JPA](https://www.baeldung.com/spring-boot-jpa-storing-postgresql-jsonb)
10+
- [“Not a Managed Type” Exception in Spring Data JPA](https://www.baeldung.com/spring-data-jpa-not-managed-type-exception)
911
- [Performance Difference Between save() and saveAll() in Spring Data](https://www.baeldung.com/spring-data-save-saveall)
1012
- [Calling Stored Procedures from Spring Data JPA Repositories](https://www.baeldung.com/spring-data-jpa-stored-procedures)
1113
- [Correct Use of flush() in JPA](https://www.baeldung.com/spring-jpa-flush)

persistence-modules/spring-data-jpa-repo/pom.xml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,16 @@
5353
<artifactId>jakarta.xml.bind-api</artifactId>
5454
<version>4.0.0</version>
5555
</dependency>
56+
<dependency>
57+
<groupId>org.projectlombok</groupId>
58+
<artifactId>lombok</artifactId>
59+
<version>${lombok.version}</version>
60+
</dependency>
61+
<dependency>
62+
<groupId>io.hypersistence</groupId>
63+
<artifactId>hypersistence-utils-hibernate-60</artifactId>
64+
<version>${hypersistance-utils-hibernate-60.version}</version>
65+
</dependency>
5666
</dependencies>
5767

5868
<build>
@@ -77,6 +87,8 @@
7787

7888
<properties>
7989
<spring-oxm.version>6.1.4</spring-oxm.version>
90+
<hypersistance-utils-hibernate-60.version>3.9.0</hypersistance-utils-hibernate-60.version>
91+
<lombok.version>1.18.36</lombok.version>
8092
</properties>
8193

8294
</project>

0 commit comments

Comments
 (0)