Skip to content
LiZongbo edited this page Apr 6, 2024 · 59 revisions

English | 中文

Druid 是一个 JDBC 组件库,包含数据库连接池、SQL Parser 等组件, 被大量业务和技术产品使用或集成,经历过最严苛线上业务场景考验,是你值得信赖的技术产品。

下载

你可以从如下地方下载:

maven central repository https://repo1.maven.org/maven2/com/alibaba/druid/

maven central repository https://repo1.maven.org/maven2/com/alibaba/druid-spring-boot-starter/

maven central repository https://repo1.maven.org/maven2/com/alibaba/druid-spring-boot-3-starter/

Maven 依赖

<dependency>
     <groupId>com.alibaba</groupId>
     <artifactId>druid</artifactId>
     <version>1.2.22</version>
</dependency>

Gradle

compile group: 'com.alibaba', name: 'druid', version: '1.2.22'
implementation 'com.alibaba:druid:1.2.22'  // short version
implementation 'com.alibaba:druid-spring-boot-3-starter:1.2.22' // starter for springboot 3.x
implementation 'com.alibaba:druid-spring-boot-starter:1.2.22'  //  starter for springboot 1.x and 2.x 

社区交流

请直接在github提出Issue进行交流反馈。

常见问题汇总

https://github.com/alibaba/druid/wiki/常见问题

Clone this wiki locally