From 31499adc00f6f86311c08892815e405bd43d18f3 Mon Sep 17 00:00:00 2001 From: cugurlu Date: Sat, 16 Mar 2019 14:10:22 +0100 Subject: [PATCH] Add application.properties --- src/Server/src/main/resources/application.properties | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/Server/src/main/resources/application.properties diff --git a/src/Server/src/main/resources/application.properties b/src/Server/src/main/resources/application.properties new file mode 100644 index 0000000..3b7b07e --- /dev/null +++ b/src/Server/src/main/resources/application.properties @@ -0,0 +1,6 @@ +spring.datasource.url=jdbc:h2:file:~/spring-boot-h2.db;DB_CLOSE_ON_EXIT=FALSE +spring.datasource.username=sa +spring.datasource.password= +spring.datasource.driver-class-name=org.h2.Driver +spring.jpa.hibernate.ddl-auto=update +spring.h2.console.enabled=true \ No newline at end of file