What is the best way to launch HSQLDB for unit testing, when working with spring, maven and hibernate? -
In my project, I can successfully test the database code I'm using Spring, Hibernate, HSUKDDB, ZyOnit and Maven I am
The catch is that at present I have to launch HSQLDB manually before running the test. What is the best way to launch HSQLDB with the technologies used?
I am assuming you are referring to hsql
.
/ Code>
Then an inprocess version of HSQLDB automatically starts, which stores the contents in memory, does not need to start any external server.
Comments
Post a Comment