Skip to content

Commit 406cb7e

Browse files
authored
JAVA-41261 Moved articles between spring-boot-persistence submodules (#18306)
* JAVA-41261 Moved article link spring-data-jpa-findby-multiple-columns from 3 to 2 * JAVA-41261 Moved article link spring-oracle-connection-pooling from 2 to 1 * JAVA-41261 Moved article from spring-boot-persistence to spring-boot-persistence-3 * JAVA-41261 Moved article spring-data-jpa-row-count from spring-boot-persistence-3 to spring-boot-persistence * JAVA-41261 Fixed the issue on spring-boot-persistence-2
1 parent eea6fb6 commit 406cb7e

40 files changed

+135
-9
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
- [Configuring a Tomcat Connection Pool in Spring Boot](https://www.baeldung.com/spring-boot-tomcat-connection-pool)
55
- [Integrating Spring Boot with HSQLDB](https://www.baeldung.com/spring-boot-hsqldb)
66
- [List of In-Memory Databases](https://www.baeldung.com/java-in-memory-databases)
7-
- [Oracle Connection Pooling With Spring](https://www.baeldung.com/spring-oracle-connection-pooling)
87
- [Object States in Hibernate’s Session](https://www.baeldung.com/hibernate-session-object-states)
98
- [Storing Files Indexed by a Database](https://www.baeldung.com/java-db-storing-files)
9+
- [How To Use findBy() With Multiple Columns in JPA](https://www.baeldung.com/spring-data-jpa-findby-multiple-columns)
1010
- More articles: [[<-- prev]](../spring-boot-persistence) [[next -->]](../spring-boot-persistence-3)
1111

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package com.baeldung.boot;
2+
3+
import org.springframework.boot.SpringApplication;
4+
import org.springframework.boot.autoconfigure.SpringBootApplication;
5+
import org.springframework.context.ApplicationContext;
6+
7+
@SpringBootApplication
8+
public class Application {
9+
private static ApplicationContext applicationContext;
10+
11+
public static void main(String[] args) {
12+
applicationContext = SpringApplication.run(Application.class, args);
13+
}
14+
}

0 commit comments

Comments
 (0)