更改spring引导项目生成的数据库连接数

时间:2017-04-23 18:46:16

标签: java spring spring-boot jhipster

我使用jHipster生成了一个spring boot项目。我想减少与数据库的连接数,所以我通过添加maximumPoolSize标签修改了application-prod.yml文件

datasource:
    type: com.zaxxer.hikari.HikariDataSource
    url: jdbc:mysql://localhost:3306/db?useUnicode=true&characterEncoding=utf8&useSSL=false
    username: root
    password:
    maximumPoolSize: 2

但是当我尝试部署应用程序时,我有10个与数据库的连接。我做错了什么?

由于

1 个答案:

答案 0 :(得分:0)

使用Spring Boot 1.4,常规属性已减少并移至每个DataSource提供程序的特定属性(the reference guiderelease notes中也对此进行了解释)。

因此,您应该使用spring.datasource.maximumPoolSize

而不是spring.datasource.hikari.maximumPoolSize

有关属性列表,请参阅the appendix