This is the DAO module for the Contact Application and has a basic JPA configuration with inheritance. It uses Spring Data JPA for it's repositories and to set audit information when persisting and entity. JPA optimistic locking has also been added. This module is based on Spring Data JPA.
The first Spring configuration file sets up the DataSource
,
what SQL scripts should be run at startup, and any property placeholder
files that should be loaded.
<?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:p="http://www.springframework.org/schema/p" xmlns:context="http://www.springframework.org/schema/context" xmlns:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.0.xsd"> <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close" p:driverClassName="${jdbc.driver.class}" p:url="${jdbc.url}" p:username="${jdbc.username}" p:password="${jdbc.password}" p:initialSize="${jdbc.initial.size}" p:minIdle="${jdbc.min.idle}" p:maxIdle="${jdbc.max.idle}" p:maxActive="${jdbc.max.active}" p:timeBetweenEvictionRunsMillis="${jdbc.time.between.eviction}" p:minEvictableIdleTimeMillis="${jdbc.min.evictable.idle}" p:testOnBorrow="true" p:validationQueryTimeout="${jdbc.validation.query.timeout}" p:validationQuery="${jdbc.validation.query}" /> <beans profile="hsql"> <context:property-placeholder location="classpath:/sql/hsql.properties,classpath*:META-INF/config/**/*.properties" /> <util:list id="databaseScriptsList" value-type="org.springframework.core.io.Resource"> <value>classpath:/sql/hsql/schema.sql</value> <value>classpath:/sql/hsql/security_schema.sql</value> </util:list> </beans> <beans profile="postgresql"> <context:property-placeholder location="classpath:/sql/postgresql.properties,classpath*:META-INF/config/**/*.properties,file:contact-app*.properties" /> <util:list id="databaseScriptsList" value-type="org.springframework.core.io.Resource" /> </beans> </beans>
The second Spring configuration file configures Spring Data JPA, and it's entity auditing feature. It also configures transactions, the entity manager, and runs any SQL scripts added to the 'databaseScriptsList' bean. The persistence unit name for JPA is set using the properties files that were loaded in the Spring profiles in the previous Spring Configuration. There is a persistence unit configuration for HSQL DB and PostgreSQL in the persistence.xml.
<?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:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jpa="http://www.springframework.org/schema/data/jpa" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa.xsd"> <jpa:repositories base-package="org.springbyexample.contact.orm.repository" /> <!-- auditing --> <jpa:auditing auditor-aware-ref="auditorAware" /> <bean id="auditorAware" class="org.springbyexample.contact.orm.entity.AuditorAwareImpl" /> <tx:annotation-driven /> <bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager" p:entityManagerFactory-ref="entityManagerFactory"/> <bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean" p:dataSource-ref="dataSource" p:persistenceUnitName="${jpa.persistence.unit.name}" depends-on="dataSourceInitializer"> <property name="jpaVendorAdapter"> <bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter" /> </property> <property name="jpaProperties"> <props> <prop key="hibernate.show_sql">${jpa.show.sql}</prop> <prop key="hibernate.generate_statistics">false</prop> <prop key="hibernate.cache.use_second_level_cache">${jpa.cache.use_second_level_cache}</prop> <prop key="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory</prop> </props> </property> </bean> <bean id="dataSourceInitializer" class="org.springframework.jdbc.datasource.init.DataSourceInitializer" p:dataSource-ref="dataSource"> <property name="databasePopulator"> <bean class="org.springframework.jdbc.datasource.init.ResourceDatabasePopulator" p:scripts-ref="databaseScriptsList" p:sqlScriptEncoding="UTF-8" /> </property> </bean> </beans>