awips2/edexOsgi/com.raytheon.uf.edex.registry.ebxml/res/spring/ebxml-common.xml
Matt Nash 2070cc94b0 Issue #1491 add Geometry converter and move registry spring instantiation
Change-Id: I7794f41c637b5e29662356d81e172d3484e66a56

Former-commit-id: 5bc585c73c [formerly 648c027294] [formerly b4f48078ca [formerly 94b52c4d617f15bb0bd8d460eb9c5ab6e1a201e6]]
Former-commit-id: b4f48078ca
Former-commit-id: 73ab7a756a
2013-01-15 17:06:28 -06:00

29 lines
1.4 KiB
XML

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:amq="http://activemq.apache.org/schema/core" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://activemq.apache.org/schema/core http://activemq.apache.org/schema/core/activemq-core.xsd
http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<bean id="ebxmlSessionFactory"
class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
<property name="configLocation">
<value>file:///${edex.home}/conf/db/hibernateConfig/ebxml/hibernate.cfg.xml</value>
</property>
<property name="packagesToScan">
<list>
<value>oasis.names.tc.ebxml.regrep.xsd.rim.v4</value>
<value>oasis.names.tc.ebxml.regrep.wsdl.registry.services.v4</value>
<value>oasis.names.tc.ebxml.regrep.xsd.lcm.v4</value>
<value>oasis.names.tc.ebxml.regrep.xsd.query.v4</value>
<value>oasis.names.tc.ebxml.regrep.xsd.rs.v4</value>
<value>oasis.names.tc.ebxml.regrep.xsd.spi.v4</value>
<value>com.raytheon.uf.edex.registry.ebxml.services.cataloger</value>
</list>
</property>
</bean>
<bean id="ebxmlTxManager"
class="org.springframework.orm.hibernate3.HibernateTransactionManager">
<property name="sessionFactory" ref="ebxmlSessionFactory" />
</bean>
</beans>