blob: 56e4864ea6f344c68d8dc77d80a59930e0942a18 [file] [log] [blame]
<?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/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalEntityManagerFactoryBean">
<property name="persistenceUnitName" value="continuum-store" />
</bean>
<!-- Setup the transaction manager -->
<bean id="transactionManager"
class="org.springframework.orm.jpa.JpaTransactionManager">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<bean id="transactionInterceptor"
class="org.springframework.transaction.interceptor.TransactionInterceptor">
<property name="transactionManager" ref="transactionManager" />
<property name="transactionAttributeSource">
<bean
class="org.springframework.transaction.annotation.AnnotationTransactionAttributeSource" />
</property>
</bean>
<!-- enable the configuration of transactional behavior based on annotations -->
<tx:annotation-driven transaction-manager="transactionManager" />
<!-- DAO -->
<bean id="daoFactory"
class="org.apache.continuum.dao.impl.DaoFactoryImpl">
</bean>
<bean id="projectGroupDao"
class="org.apache.continuum.dao.impl.GenericDaoJpa"
factory-bean="daoFactory"
factory-method="createProjectGroupDao">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<bean id="projectDao"
class="org.apache.continuum.dao.impl.GenericDaoJpa"
factory-bean="daoFactory"
factory-method="createProjectDao">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<bean id="notifierDao"
class="org.apache.continuum.dao.impl.GenericDaoJpa"
factory-bean="daoFactory"
factory-method="createNotifierDao">
<property name="entityManagerFactory" ref="entityManagerFactory" />
</bean>
<!-- SERVICES -->
<bean id="projectGroupService"
class="org.apache.continuum.service.impl.ProjectGroupServiceImpl">
<property name="projectGroupDao" ref="projectGroupDao"/>
<property name="projectDao" ref="projectDao"/>
</bean>
<bean id="projectService"
class="org.apache.continuum.service.impl.ProjectServiceImpl">
<property name="projectDao" ref="projectGroupDao"/>
<property name="notifierDao" ref="notifierDao"/>
</bean>
</beans>