springboot配置druid连接池
时间: 2023-04-28 16:05:45 浏览: 171
在项目中使用Spring Boot时配置Druid连接池需要以下步骤:
1. 在pom.xml文件中添加Druid的依赖:
```
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid</artifactId>
<version>1.1.22</version>
</dependency>
```
2. 在application.properties或application.yml文件中配置Druid连接池的相关属性,如url、username、password等。
```
spring.datasource.url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
```
3. 在启动类中添加@ServletComponentScan注解,开启Druid的StatViewServlet和WebStatFilter:
```
@ServletComponentScan
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
```
4. 在application.properties或application.yml中配置Druid的StatViewServlet和WebStatFilter:
```
# Druid配置
spring.datasource.druid.stat-view-servlet.enabled=true
spring.datasource.druid.stat-view-servlet.url-pattern=/druid/*
spring.datasource.druid.web-stat-filter.enabled=true
spring.datasource.druid.web-stat-filter.url-pattern=/druid/*
```
5. 启动项目后,访问http://localhost:端口/druid/index.html即可看到Druid的监控页面。
需要注意的是,上面只是最基本的配置,Druid还有很多高级功能,可以根据需要进行配置。
阅读全文