ogg-plugin/ggjava/resources/config/ggue-context.xml (30 lines of code) (raw):
<?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:util="http://www.springframework.org/schema/util"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:jms="http://www.springframework.org/schema/jms"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-4.3.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd
http://www.springframework.org/schema/jms http://www.springframework.org/schema/jms/spring-jms-4.3.xsd">
<description>
Configuration for dataSources and the factories that create them.
</description>
<!--
| Do not modify this file.
|
| Spring context for application, appended to other contexts bundled in the app.
-->
<context:property-placeholder location="classpath*:/config/ggue.properties"/>
<context:annotation-config/>
<bean id="dataSourceConfig"
class="oracle.goldengate.datasource.DataSourceConfig"
scope="singleton">
<constructor-arg type="java.lang.String" value="/dirprm/javaue.properties"/>
</bean>
<bean id="versionInfo"
class="oracle.goldengate.util.VersionInfo"
scope="singleton">
<constructor-arg type="java.lang.String" value="/config/ggue.properties"/>
</bean>
</beans>