Skip to content

Commit bb3c7c2

Browse files
rajat-gargrajatgarg
andauthored
[BAEL-7843] Move HikariCP article code to correct module (eugenp#17345)
* [BAEL-7843] Move HikariCP article code to correct module * [BAEL-7843] Move HikariCP article code to correct module --------- Co-authored-by: rajatgarg <rajatgarg@adobe.com>
1 parent bac15c1 commit bb3c7c2

File tree

5 files changed

+6
-2
lines changed

5 files changed

+6
-2
lines changed

persistence-modules/spring-boot-persistence-5/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22

33
- [Using Enum in Spring Data JPA Queries](https://www.baeldung.com/spring-data-jpa-enums)
44
- [Run Queries From a File in H2 Database](https://www.baeldung.com/java-h2-db-execute-sql-file)
5+
- [Configuring a Hikari Connection Pool with Spring Boot](https://www.baeldung.com/spring-boot-hikari)

persistence-modules/spring-boot-persistence-5/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@
1616
</parent>
1717

1818
<dependencies>
19+
<dependency>
20+
<groupId>org.springframework.boot</groupId>
21+
<artifactId>spring-boot-starter-web</artifactId>
22+
</dependency>
1923
<dependency>
2024
<groupId>org.springframework.boot</groupId>
2125
<artifactId>spring-boot-starter-data-jpa</artifactId>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package com.baeldung.hikari;
22

3-
import static org.junit.Assert.*;
3+
import static org.junit.Assert.assertEquals;
44

55
import javax.sql.DataSource;
66

spring-5/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,3 @@ This module contains articles about Spring 5
88
- [Spring ResponseStatusException](https://www.baeldung.com/spring-response-status-exception)
99
- [Spring Assert Statements](https://www.baeldung.com/spring-assert)
1010
- [Difference between context:annotation-config vs context:component-scan](https://www.baeldung.com/spring-contextannotation-contextcomponentscan)
11-
- [Configuring a Hikari Connection Pool with Spring Boot](https://www.baeldung.com/spring-boot-hikari)

0 commit comments

Comments
 (0)