4.2. MySQL

You can see an example configuration of the database MySQL. 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 of the database administrator is sa and the password is secret.

dataSource.driverClassName=com.mysql.jdbc.Driver
dataSource.dialect=org.hibernate.dialect.MySQLDialect
dataSource.url=jdbc:mysql://localhost:3306/test;create=true
dataSource.username=sa
dataSource.password=secret
dataSource.hbm2ddl=update
dataSource.poolsize=2