added code example using HikariCP in Boot 1.x and 2.x (#5007)
* added code example using HikariCP in Boot 1.x and 2.x * code formatting
This commit is contained in:
committed by
Predrag Maric
parent
110a74e4b1
commit
cb9e1f29b5
@@ -0,0 +1,12 @@
|
||||
package com.baeldung.connectionpool;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class ApplicationWithHikariConnectionPool {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(ApplicationWithHikariConnectionPool.class, args);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user