Currently using local sqlite db for playing around with.
This commit is contained in:
parent
7e0d58200f
commit
64c828b87e
@ -1,6 +1,13 @@
|
|||||||
database:
|
database:
|
||||||
driverClass: org.h2.Driver
|
# the name of your JDBC driver
|
||||||
url: jdbc:h2:mem:myDb;DB_CLOSE_DELAY=-1
|
driverClass: org.sqlite.JDBC
|
||||||
|
|
||||||
|
# the JDBC URL
|
||||||
|
url: jdbc:sqlite:sampledatabase.db
|
||||||
|
|
||||||
|
# any properties specific to your JDBC driver:
|
||||||
|
properties:
|
||||||
|
foreign_keys: true
|
||||||
|
|
||||||
server:
|
server:
|
||||||
rootPath: /api/
|
rootPath: /api/
|
@ -51,6 +51,11 @@
|
|||||||
<artifactId>h2</artifactId>
|
<artifactId>h2</artifactId>
|
||||||
<version>1.4.197</version>
|
<version>1.4.197</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.xerial</groupId>
|
||||||
|
<artifactId>sqlite-jdbc</artifactId>
|
||||||
|
<version>3.23.1</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
Loading…
Reference in New Issue
Block a user