2

is it possible at all? Seems easy to be done in the first version of the framework.

tshepang
  • 12,111
  • 21
  • 91
  • 136
Leandro
  • 1,076
  • 12
  • 21

1 Answers1

4

Instead of using

# Default database configuration
db.default.driver=org.h2.Driver
db.default.url="jdbc:h2:mem:play"

you should be able to just use

# FS database configuration
db.default.driver=org.h2.Driver
db.default.url="jdbc:h2:playdb"

This will create the file in the current working directory. See the H2 CheatSheet for more information

Codemwnci
  • 54,176
  • 10
  • 96
  • 129