Skip to content

Commit 54f5947

Browse files
authored
[JAVA-40701] Move articles in Java Persistence modules (#17774)
1 parent 5d30d0b commit 54f5947

File tree

20 files changed

+58
-45
lines changed

20 files changed

+58
-45
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
### Relevant Articles:
22

33
- [Getting Database URL From JDBC Connection Object](https://www.baeldung.com/jdbc-get-url-from-connection)
4-
- [Jdbc URL Format for Different Databases](https://www.baeldung.com/java-jdbc-url-format)
54
- [How to Check if a Database Table Exists with JDBC](https://www.baeldung.com/jdbc-check-table-exists)
65
- [Inserting Null Into an Integer Column Using JDBC](https://www.baeldung.com/jdbc-insert-null-into-integer-column)
7-
- [A Guide to Auto-Commit in JDBC](https://www.baeldung.com/java-jdbc-auto-commit)
86
- [JDBC Connection Status](https://www.baeldung.com/jdbc-connection-status)
97
- [Get the Number of Rows in a ResultSet](https://www.baeldung.com/java-resultset-number-of-rows)
108
- [Converting a JDBC ResultSet to JSON in Java](https://www.baeldung.com/java-jdbc-convert-resultset-to-json)
119
- [Guide to MicroStream](https://www.baeldung.com/microstream-intro)
1210
- [Executing SQL Script File in Java](https://www.baeldung.com/java-run-sql-script)
11+
- [Loading JDBC Drivers](https://www.baeldung.com/java-jdbc-loading-drivers)
12+
- More articles: [[<-- prev]](/persistence-moules/core-java-persistence) [[next -->]](/persistence-moules/core-java-persistence-3)
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
## Relevant Articles
22
- [Convert ResultSet Into Map](https://www.baeldung.com/java-resultset-map)
33
- [Pagination With JDBC](https://www.baeldung.com/java-jdbc-pagination)
4-
- [Store File or byte[] as SQL Blob in Java (Store and Load)](https://www.baeldung.com/java-sql-store-load-file-blob)
54
- [Insert JSON Object into PostgreSQL using Java preparedStatement](https://www.baeldung.com/java-postgresql-insert-json-object-preparedstatement)
65
- [Getting the Insert ID in JDBC](https://www.baeldung.com/jdbc-get-insert-id)
76
- [Setup MySQL DB in Eclipse](https://www.baeldung.com/java-eclipse-ide-setup-mysql-database)
87
- [Convert a ResultSet From PostgreSQL Array to Array of Strings](https://www.baeldung.com/java-convert-postgresql-array-strings)
98
- [JDBC PreparedStatement SQL IN clause](https://www.baeldung.com/java-jdbc-preparedstatement-in-clause)
109
- [Processing JDBC ResultSet With Stream API](https://www.baeldung.com/stream-api-jdbc-resultset)
10+
- [Introduction to the JDBC RowSet Interface in Java](http://www.baeldung.com/java-jdbc-rowset)
11+
- [Types of SQL Joins with Java Examples](https://www.baeldung.com/sql-joins)
12+
- - More articles: [[<-- prev]](/persistence-moules/core-java-persistence-2)

persistence-modules/core-java-persistence-3/pom.xml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,33 +37,27 @@
3737
<artifactId>commons-dbutils</artifactId>
3838
<version>${commons-dbutils.version}</version>
3939
</dependency>
40-
4140
<dependency>
4241
<groupId>org.postgresql</groupId>
4342
<artifactId>postgresql</artifactId>
4443
<version>${postgresql.version}</version>
4544
<scope>runtime</scope>
4645
</dependency>
47-
4846
<dependency>
4947
<groupId>org.json</groupId>
5048
<artifactId>json</artifactId>
5149
<version>${org.json.version}</version>
5250
</dependency>
53-
5451
<dependency>
5552
<groupId>org.jooq</groupId>
5653
<artifactId>jooq</artifactId>
5754
<version>${jooq.version}</version>
5855
</dependency>
59-
6056
<dependency>
6157
<groupId>com.github.juliomarcopineda</groupId>
6258
<artifactId>jdbc-stream</artifactId>
6359
<version>${jdbc-stream.version}</version>
6460
</dependency>
65-
66-
<!-- https://mvnrepository.com/artifact/org.mockito/mockito-junit-jupiter -->
6761
<dependency>
6862
<groupId>org.mockito</groupId>
6963
<artifactId>mockito-junit-jupiter</artifactId>
@@ -75,6 +69,16 @@
7569
<artifactId>lombok</artifactId>
7670
<version>${lombok.version}</version>
7771
</dependency>
72+
<dependency>
73+
<groupId>org.springframework</groupId>
74+
<artifactId>spring-web</artifactId>
75+
<version>${springframework.spring-web.version}</version>
76+
</dependency>
77+
<dependency>
78+
<groupId>org.springframework.boot</groupId>
79+
<artifactId>spring-boot-starter</artifactId>
80+
<version>${springframework.boot.spring-boot-starter.version}</version>
81+
</dependency>
7882
</dependencies>
7983

8084
<properties>
@@ -84,5 +88,8 @@
8488
<org.json.version>20240303</org.json.version>
8589
<jooq.version>3.19.11</jooq.version>
8690
<jdbc-stream.version>0.1.1</jdbc-stream.version>
91+
<springframework.boot.spring-boot-starter.version>3.0.4</springframework.boot.spring-boot-starter.version>
92+
<springframework.spring-web.version>6.0.6</springframework.spring-web.version>
8793
</properties>
94+
8895
</project>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.baeldung.spring.jdbc.joins;
1+
package com.baeldung.joins;
22

33
class ArticleWithAuthor {
44

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.baeldung.spring.jdbc.joins;
1+
package com.baeldung.joins;
22

33
import java.sql.Connection;
44
import java.sql.ResultSet;

0 commit comments

Comments
 (0)