starting and stopping hsqldb from unit tests

后端 未结 6 780
清歌不尽
清歌不尽 2021-01-21 04:07

I\'m trying to create integration tests using hsqldb in an in memory mode. At the moment, I have to start the hsqldb server from the command line before running the unit tests.

6条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-21 05:04

    Try appending this to the jdbc url:

    ;ifexists=true;shutdown=true;
    

提交回复
热议问题