Created
October 16, 2014 15:48
-
-
Save gabanox/a157480790e112209da7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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:jdbc="http://www.springframework.org/schema/jdbc" | |
xmlns:jpa="http://www.springframework.org/schema/data/jpa" | |
xmlns:tx="http://www.springframework.org/schema/tx" | |
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd | |
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd | |
http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd | |
http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.0.xsd | |
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.1.xsd"> | |
<jdbc:embedded-database id="dataSource" type="H2"> | |
<jdbc:script location="classpath:schema.sql"/> | |
<jdbc:script location="classpath:test-data.sql"/> | |
</jdbc:embedded-database> | |
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"> | |
<property name="entityManagerFactory" ref="emf"/> | |
</bean> | |
<tx:annotation-driven transaction-manager="transactionManager" /> | |
<bean id="emf" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean"> | |
<property name="dataSource" ref="dataSource" /> | |
<property name="jpaVendorAdapter"> | |
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter" /> | |
</property> | |
<property name="packagesToScan" value="com.company.app"/> | |
<property name="jpaProperties"> | |
<props> | |
<prop key="hibernate.dialect">org.hibernate.dialect.H2Dialect</prop> | |
<prop key="hibernate.max_fetch_depth">3</prop> | |
<prop key="hibernate.jdbc.fetch_size">50</prop> | |
<prop key="hibernate.jdbc.batch_size">10</prop> | |
<prop key="hibernate.show_sql">true</prop> | |
</props> | |
</property> | |
</bean> | |
<context:annotation-config/> | |
<context:component-scan base-package="com.company.app"/> | |
<jpa:repositories base-package="com.company.app.repository" | |
entity-manager-factory-ref="emf" | |
transaction-manager-ref="transactionManager"/> | |
</beans> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment