当前位置:   article > 正文

如何查看Spring Boot 默认的数据库连接池类型

如何查看Spring Boot 默认的数据库连接池类型

使用的Spring Boot的版本:2.3.4.RELEASE

先给出答案:com.zaxxer.hikari.HikariDataSource

怎么知道的呢?

新建一个Spring boot项目:springbootTest

配置pom.xml

  1. <dependencies>
  2. <!-- SpringBoot 核心包 -->
  3. <dependency>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-starter</artifactId>
  6. </dependency>
  7. <!-- Mysql驱动包 -->
  8. <dependency>
  9. <groupId>mysql</groupId>
  10. <artifactId>mysql-connector-java</artifactId>
  11. <version>5.1.21</version>
  12. </dependency>
  13. <!-- spring-boot-starter-jdbc -->
  14. <dependency>
  15. <groupId>org.springframework.boot</groupId>
  16. <artifactId>spring-boot-starter-jdbc</artifactId>
  17. </dependency>
  18. </dependencies>

配置application.yml

  1. spring:
  2. #配置MySQL连接
  3. datasource:
  4. driver-class-name: com.mysql.jdbc.Driver
  5. url: jdbc:mysql://127.0.0.1:3306/mysql-test?characterEncoding=UTF-8
  6. username: root
  7. password: 123456
  8. #type: com.alibaba.druid.pool.DruidDataSource

写一个类来输出Spring Boot 默认的数据库连接池类型

  1. import javax.sql.DataSource;
  2. import org.springframework.beans.BeansException;
  3. import org.springframework.context.ApplicationContext;
  4. import org.springframework.context.ApplicationContextAware;
  5. import org.springframework.stereotype.Component;
  6. @Component
  7. public class ApplicationTest implements ApplicationContextAware {
  8. @Override
  9. public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
  10. DataSource dataSource = applicationContext.getBean(DataSource.class) ;
  11. System.out.println("----------------------------------");
  12. System.out.println(dataSource.getClass().getName());
  13. System.out.println("----------------------------------");
  14. }
  15. }

启动Spring Boot 即可看到启动日志中打印了:

 可以看到Spring Boot 默认的数据库连接池类型:Hikari

可以在application.yml 的配置中修改连接池类型,具体看前面的配置,在pom.xml 中加入相应的依赖即可。

接下来我们来找找看这个类在哪里

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/599543
推荐阅读