2017-08-30 701 views
0

我在運行Java SpringBoot應用程序時遇到問題,在啓動過程中出現如下錯誤: 它有什麼問題?Java錯誤'Unable to create initial connections of pool'在啓動過程中

2017-08-30 17:20:41.790 ERROR 5048 --- [   main] o.a.tomcat.jdbc.pool.ConnectionPool  : Unable to create initial connections of pool. 

    org.h2.jdbc.JdbcSQLException: A file path that is implicitly relative to the current working directory is not allowed in the database URL "jdbc:h2:file:/tmp/app_db;DB_CLOSE_ON_EXIT=FALSE". Use an absolute path, ~/name, ./name, or the baseDir setting instead. [90011-193] 
     at org.h2.message.DbException.getJdbcSQLException(DbException.java:345) ~[h2-1.4.193.jar:1.4.193] 



    2017-08-30 17:20:41.795 WARN 5048 --- [   main] o.s.b.a.orm.jpa.DatabaseLookup   : Unable to determine jdbc url from datasource 


    org.springframework.jdbc.support.MetaDataAccessException: Could not get Connection for extracting meta data; nested exception is org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is org.h2.jdbc.JdbcSQLException: A file path that is implicitly relative to the current working directory is not allowed in the database URL "jdbc:h2:file:/tmp/app_db;DB_CLOSE_ON_EXIT=FALSE". Use an absolute path, ~/name, ./name, or the baseDir setting instead. [90011-193] 
     at org.springframework.jdbc.support.JdbcUtils.extractDatabaseMetaData(JdbcUtils.java:339) ~[spring-jdbc-4.3.7.RELEASE.jar:4.3.7.RELEASE] 
+1

你怎麼不從錯誤消息,明白了嗎?我認爲它對問題給出了很好的解釋。 – Andremoniy

回答

0

好了,解決了,我在Windows上工作,應用程序寫在Linux上,這就是原因