H2数据库中的问题可能已在使用中

时间:2016-05-10 12:23:04

标签: java spring spring-boot h2

我正在尝试使用H2database和Spring-boot运行应用程序。每当我在独立的tomcat中重新部署我的应用程序时。它最终会说和构建失败:

Database may be already in use: "/root/NCRWalmart/walmart-pos-wits-common-configuration/src/main/wits_orch.mv.db". Possible solutions: close all other connection(s); use the server mode [90020-182]

我通过H2databse的官方网站尝试了不同的解决方案,但没有什么对我有用。 我尝试在我的属性文件中使用以下URL:

spring.datasource.url=jdbc:h2:file:${spring.config.location}/wits_orch;DB_CLOSE_ON_EXIT=true;FILE_LOCK=SOCKET;

任何解决方案?

1 个答案:

答案 0 :(得分:0)

您可能有另一个进程同时运行相同的H2实例。 尝试类似ps -ef | grep h2的内容,它会显示使用h2 * .jar

的所有进程