DBPool

JDBC connection pooling utility, supporting time-based expiry, statement caching, connection validation, and easy configuration using a pool manager.

Лицензия

Лицензия

Категории

Категории

Сеть
Группа

Группа

net.snaq
Идентификатор

Идентификатор

dbpool
Последняя версия

Последняя версия

7.0.1-jdk7
Дата

Дата

Тип

Тип

jar
Описание

Описание

DBPool
JDBC connection pooling utility, supporting time-based expiry, statement caching, connection validation, and easy configuration using a pool manager.
Ссылка на сайт

Ссылка на сайт

http://www.snaq.net/java/DBPool/
Система контроля версий

Система контроля версий

https://github.com/gwinstanley/DBPool

Скачать dbpool

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/net.snaq/dbpool/ -->
<dependency>
    <groupId>net.snaq</groupId>
    <artifactId>dbpool</artifactId>
    <version>7.0.1-jdk7</version>
</dependency>
// https://jarcasting.com/artifacts/net.snaq/dbpool/
implementation 'net.snaq:dbpool:7.0.1-jdk7'
// https://jarcasting.com/artifacts/net.snaq/dbpool/
implementation ("net.snaq:dbpool:7.0.1-jdk7")
'net.snaq:dbpool:jar:7.0.1-jdk7'
<dependency org="net.snaq" name="dbpool" rev="7.0.1-jdk7">
  <artifact name="dbpool" type="jar" />
</dependency>
@Grapes(
@Grab(group='net.snaq', module='dbpool', version='7.0.1-jdk7')
)
libraryDependencies += "net.snaq" % "dbpool" % "7.0.1-jdk7"
[net.snaq/dbpool "7.0.1-jdk7"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.slf4j : slf4j-api jar 1.7.21

provided (1)

Идентификатор библиотеки Тип Версия
javax : javaee-web-api jar 6.0

Модули Проекта

Данный проект не имеет модулей.

DBPool : Java Database Connection Pooling

What is DBPool?

A Java-based database connection pooling utility, supporting time-based idle timeout, statement caching, connection validation, and easy configuration using a pool manager.

Why would I use it?

Applications using databases often need to obtain connections to the database frequently. For example, a popular website serving information from a database may need a connection for each client requesting a page using their browser. To ensure good application response time for each client, the application needs to be profiled to find the time spent performing each of its tasks. One of the most expensive database-related tasks is the initial creation of the connection. Once the connection has been made the transaction often takes place very quickly. A connection pool maintains a pool of opened connections so the application can simply grab one when it needs to, use it, and then hand it back, eliminating much of the long wait for the creation of connections.

Licence Agreement

DBPool is available under a BSD-style licence, which can be viewed in the LICENSE.txt file.

What are the requirements/dependencies?

  • Requirements: DBPool 7.0 requires Java Platform 8 (also known as Java 1.8.x) or above, with support for JDBC 4.2 features. With minor source modifications it can also support Java Platform 7 (Java 1.7.x). If rebuilding from the source code, Apache Maven is recommended as a build tool.
  • Dependencies: SLF4J

Where can I find more detailed information?

For full documentation see the DBPool webpage.

Версии библиотеки

Версия
7.0.1-jdk7
7.0.1
7.0-jdk7
7.0
6.0.1
6.0
5.1
5.0