在Spring Boot中使用HikariCP时出现连接问题

时间:2018-08-01 07:12:27

标签: spring-boot spring-data-jpa hikaricp

我正在使用Spring Boot 2.0.3开发Spring应用程序。在我们最近不得不将dev数据库移至新系统之后,我注意到了这个问题。因此,问题是:

  1. 使用pgAdmin,我可以看到每30分钟自动建立10个连接。
  2. 使用pgAdmin,我还看到,无论何时通过IDE重新启动应用程序或终止function downloadFunc(){ var anchor=document.createElement('a'); anchor.setAttribute('href','D:/SamplePDF.pdf'); anchor.setAttribute('download',''); document.body.appendChild(anchor); anchor.click(); anchor.parentNode.removeChild(anchor); }并重新执行它,仍然存在已存在的连接。因此,在重新启动数据库后,.jar设置为100很快就会被填满。

我的类路径中包含HikariCP,并且max_connections中包含了spring-boot-starter-data-jpa。我仅使用build.gradle来设置连接,而我要设置的属性是:

application.properties

我倾向于认为这两个问题有关。我是否缺少某些配置属性?如果没有,我该怎么办才能解决这个问题?

0 个答案:

没有答案