An explanation of database connection pools and how to use them in Java applications.
What is a database connection pool? appeared first on MariaDB.org
A database connection pool stores ready-to-use database connections that threads can borrow when they need them, and return when they finish the work with the database. This improves performance in terms of memory and processing consumption, especially in web applications such as websites and REST web services. The technique is also known as pooling. Here’s how to use it in Java apps.
HikariCP is one, if not the most, popular JDBC connection pool. You can add it to your project using Maven (check the latest version):
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>LATEST</version>
</dependency>The connection pool can be configured programmatically or through a configuration file (src/main/resources/database.properties):
jdbcUrl=jdbc:mariadb://localhost:3306/some_database
dataSource.username=the_database_user
dataSource.password=the_password_for_that_userThere are more properties available, like the size of the pool, whether to use auto-commit or not, timeouts, etc. Check the documentation for details.
Now you can create a JDBC DataSource object from which to get Statement or PreparedStatement objects to execute SQL statements:
HikariConfig hikariConfig = new HikariConfig("/database.properties");
HikariDataSource dataSource = new HikariDataSource(hikariConfig);
try (Connection connection = dataSource.getConnection()) {
// ... run SQL queries here ...
}If you don’t use a try-with-resources block, remember to return the connection object to the pool by calling connection.close() preferably in a finally block:
try {
// ... code ...
} finally {
dataSource.close();
}See JDBC Tutorial Part 3: Using database connection pools, for a more detailed tutorial or watch me coding an example Java application using Connector/J with a MariaDB database:
Enjoyed this post? I can help your team implement similar solutions—contact me to learn more.
| # | Наименование новости | Тональность | Информативность | Дата публикации |
|---|---|---|---|---|
| 1 | How to open and close JDBC connections | 0 | 4.76 | 12-01-2022 |
| 2 | How to execute SQL queries from Java (and prevent SQL injections) | 0 | 3.48 | 12-01-2022 |
| 3 | What is MariaDB? | 0 | 7.66 | 21-09-2023 |
| 4 | Why MariaDB instead of MySQL, PostgreSQL, or MongoDB? | 0 | 5.85 | 25-02-2023 |
| 5 | Why do we need databases and SQL? | 0 | 5.63 | 06-03-2024 |
| 6 | New book (coming) – MariaDB for Developers | 0 | 7.06 | 31-12-2023 |
| 7 | New YouTube channel on programming (mostly Java) | 0 | 4.13 | 04-01-2022 |
| 8 | How to start a web server using Java | 0 | 3.76 | 23-03-2022 |
| 9 | What is JPA? | 0 | 9.18 | 07-02-2022 |
| 10 | High availability and resiliency in databases with MaxScale | 0 | 3.79 | 26-03-2024 |