h2 enabling remote database creation first

Solutions on MaxInterview for h2 enabling remote database creation first by the best coders in the world

showing results for - "h2 enabling remote database creation first"
Demi
11 Nov 2017
1//Try this in your application.properties. It worked for me:
2
3  spring.datasource.url=jdbc:h2:~/test
4  spring.datasource.driverClassName=org.h2.Driver
5  spring.datasource.username=sa
6  spring.datasource.password=
7  spring.jpa.database-platform=org.hibernate.dialect.H2Dialect