4.1. H2

You can see an example configuration of the database H2. The database is on the same machine as JAWS. The database is called test. If the database doesn't exist it will be created. The username for the database administrator is sa and the password is secret.

dataSource.driverClassName=org.h2.Driver
dataSource.dialect=org.hibernate.dialect.H2Dialect
dataSource.url=jdbc:h2:tcp://localhost/test;create=true
dataSource.username=sa
dataSource.password=secret
dataSource.hbm2ddl=update
dataSource.poolsize=2