我正在使用Spring Boot 2.0.3开发Spring应用程序。在我们最近不得不将dev数据库移至新系统之后,我注意到了这个问题。因此,问题是:
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
我倾向于认为这两个问题有关。我是否缺少某些配置属性?如果没有,我该怎么办才能解决这个问题?