30 lines
1011 B
XML
30 lines
1011 B
XML
<?xml version='1.0' encoding='utf-8'?>
|
|
<!DOCTYPE hibernate-configuration PUBLIC
|
|
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
|
|
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
|
|
|
|
<hibernate-configuration>
|
|
|
|
<session-factory>
|
|
|
|
<!-- Use in-memory DB for testing -->
|
|
<property name="connection.driver_class">org.h2.Driver</property>
|
|
<property name="connection.url">jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE</property>
|
|
<property name="connection.username">sa</property>
|
|
<property name="connection.password"/>
|
|
<property name="dialect">org.hibernate.dialect.H2Dialect</property>
|
|
|
|
<property name="connection.pool_size">1</property>
|
|
<property name="cache.provider_class">org.hibernate.cache.internal.NoCacheProvider</property>
|
|
<property name="show_sql">true</property>
|
|
|
|
<!-- Reset the DB each test -->
|
|
<property name="hbm2ddl.auto">create</property>
|
|
|
|
<!-- Objects -->
|
|
<mapping class="Value"/>
|
|
|
|
</session-factory>
|
|
|
|
</hibernate-configuration>
|