I\'m trying to unit test (JUnit) a DAO i\'ve created. I\'m using Spring as my framework, my DAO (JdbcPackageDAO) extends SimpleJdbcDaoSupport. The testing class (JdbcPacka
It might be that
hsql://localhost
can't be resolved to a file. Look at the sample program here:
Sample HSQLDB program
See if you can get that working first, and then see if you can take that configuration information and use it in the Spring bean configuration.
Good luck!