You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
2.0 KiB
44 lines
2.0 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<persistence xmlns="http://java.sun.com/xml/ns/persistence"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
|
|
http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" version="1.0">
|
|
|
|
<!-- JPA test "unit" -->
|
|
<persistence-unit name="testUnit" transaction-type="RESOURCE_LOCAL">
|
|
<provider>org.hibernate.ejb.HibernatePersistence</provider>
|
|
|
|
<class>com.google.inject.persist.jpa.JpaTestEntity</class>
|
|
<class>com.google.inject.persist.jpa.JpaParentTestEntity</class>
|
|
<exclude-unlisted-classes>true</exclude-unlisted-classes>
|
|
|
|
<properties>
|
|
<property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver"/>
|
|
<property name="hibernate.connection.url" value="jdbc:hsqldb:mem:persistence"/>
|
|
<property name="hibernate.connection.username" value="sa"/>
|
|
<property name="hibernate.connection.password" value=""/>
|
|
<property name="hibernate.connection.pool_size" value="2"/>
|
|
<property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
|
|
<property name="hiberante.cache_provider" value="org.hibernate.cache.NoCacheProvider"/>
|
|
|
|
<property name="hibernate.hbm2ddl.auto" value="create"/>
|
|
</properties>
|
|
</persistence-unit>
|
|
|
|
<persistence-unit name="testProperties" transaction-type="RESOURCE_LOCAL">
|
|
<provider>org.hibernate.ejb.HibernatePersistence</provider>
|
|
|
|
<class>com.google.inject.persist.jpa.JpaTestEntity</class>
|
|
<class>com.google.inject.persist.jpa.JpaParentTestEntity</class>
|
|
<exclude-unlisted-classes>true</exclude-unlisted-classes>
|
|
|
|
<properties>
|
|
<property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect"/>
|
|
<property name="hibernate.id.new_generator_mappings" value="true"/>
|
|
<property name="hibernate.hbm2ddl.auto" value="create-drop"/>
|
|
</properties>
|
|
</persistence-unit>
|
|
|
|
</persistence>
|
|
|