Guest User

Untitled

a guest
Jun 11th, 2018
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. # Local db filestore: in your home folder
  2. spring.datasource.url=jdbc:h2:file:~/db/rd_light.db;DB_CLOSE_ON_EXIT=FALSE;IFEXISTS=TRUE;DB_CLOSE_DELAY=-1;
  3.  
  4. # h2 defaults:
  5. spring.datasource.username=sa
  6. spring.datasource.password=
  7.  
  8. spring.datasource.driverClassName=org.h2.Driver
  9.  
  10. # Use "create" or "create-drop" when you wish to recreate database on restart; use
  11. # "update" or "validate" when data is to be kept.
  12. spring.jpa.hibernate.ddl-auto = update
  13.  
  14. spring.jpa.database-platform=org.hibernate.dialect.H2Dialect
  15.  
  16. spring.jpa.show-sql=true
  17. spring.jpa.properties.hibernate.format_sql=true
  18.  
  19. spring.flyway.enabled=true
  20. spring.flyway.url=jdbc:h2:file:~/db/rd_light.db
  21. spring.flyway.user=sa
  22. spring.flyway.password=
  23. spring.flyway.locations=classpath:db/migration
  24.  
  25. 2018-06-11 12:19:53.160 ERROR 19455 --- [JavaFX-Launcher] com.zaxxer.hikari.pool.HikariPool : HikariPool-1 - Exception during pool initialization.
  26.  
  27. org.h2.jdbc.JdbcSQLException: Database "/home/administrator/db/rd_light.db" not found [90013-197]
  28. at org.h2.message.DbException.getJdbcSQLException(DbException.java:357) ~[h2-1.4.197.jar:1.4.197]
  29. at org.h2.message.DbException.get(DbException.java:179) ~[h2-1.4.197.jar:1.4.197]
Add Comment
Please, Sign In to add comment