Frage

Ich brauche diesen Hibernate, der vor Start -JUNIT -Tests eine SQL -Datei gelesen habe. Daher habe ich die folgende Konfiguration in Persistence.xml durchgeführt:

<persistence xmlns="http://java.sun.com/xml/ns/persistence" 
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0" 
         xsi:schemaLocation="http://java.sun.com/xml/ns/persistence 
                             http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">

<persistence-unit name="test" transaction-type="RESOURCE_LOCAL">
    <provider>org.hibernate.ejb.HibernatePersistence</provider>
    <properties>
        <property name="hibernate.connection.username" value="sa" />
        <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver" />
        <property name="hibernate.connection.password" value="" />
        <property name="hibernate.connection.url" value="jdbc:hsqldb:hsql://localhost:9001/test" /> 
        <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect" />
        <property name="hibernate.show_sql" value="true" />
        <property name="hibernate.format_sql" value="true" />
        <property name="hibernate.id.new_generator_mappings" value="true" />
        <property name="hibernate.hbm2ddl.auto" value="create" />
        <property name="hibernate.hbm2ddl.import_files" value="/META-INF/load.sql" />
    </properties>
</persistence-unit>
</persistence>

Der ApplicationContext.xml zum Laden des Federkontexts:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd">

<context:component-scan base-package="com.test" />

<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalEntityManagerFactoryBean">
    <property name="persistenceUnitName" value="test" />
</bean>

<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager">
    <property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>

<tx:annotation-driven transaction-manager="transactionManager"></tx:annotation-driven>

<bean class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor"></bean>
</beans>

Junit -Tests erweitern die Klasse:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:/applicationContext.xml" })
@TestExecutionListeners(inheritListeners = false, listeners = {
    TransactionalTestExecutionListener.class, DependencyInjectionTestExecutionListener.class })
@TransactionConfiguration(defaultRollback = true)
@Transactional
public abstract class UnitTestConfiguration {}

Wenn ich die JUNIT -Tests ausführe, wurde die Datei load.sql nicht importiert und es werden keine Fehler angezeigt. Ich benutze Hibernate 4 und Frühling 3.0.5.

War es hilfreich?

Lösung

Ich löste mein Problem, indem ich das setzte load.sql in src/test/resource/ Mappe. Dieser Weg ist nicht notwendig, um in festzulegen persistence.xml wo die SQL -Datei ist.

Andere Tipps

Ich denke (ich benutze es normalerweise) Sie sollten es in Ihre applicationContext.xml aufnehmen:

<import resource="classpath:/path_to_persistence/persistence.xml" />

Sie können auch mehrere Konfigurationsdateien im Test angeben @ContextConfiguration:

@ContextConfiguration(locations = { "classpath:/applicationContext1.xml", ... ,"classpath:/applicationContextn.xml" })

Setzen Sie einfach eine Datei mit Namen ein import.sql an src/test/resources Verzeichnis.

Der Standardwert der Eigenschaft javax.persistence.hibernate.hbm2ddl.import_files istimport.sql.

Prüfen: http://docs.jboss.org/hibernate/ORM/ORM/5.3/userguide/html_single/hibernate_user_guide.html

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top