...
Code Block |
---|
<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:util="http://www.springframework.org/schema/util" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd"> <context:component-scan base-package="dk.statsbiblioteket.newspaper.processmonitor.backend"/> <bean id="sboi_config" class="dk.statsbiblioteket.medieplatform.autonomous.processmonitor.datasources.SBOIDatasourceConfiguration" scope="singleton"> <property name="summaLocation" value="http://achernar:58608/newspapr/sbsolr/"/> <property<property name="domsLocation" value="http://achernar:7880/fedora"/> <property name="domsUser" value="<doms user>"/> <property name="domsPassword" value="<doms pass pass>>"/> </bean> <bean id="sboi" class="dk.statsbiblioteket.medieplatform.autonomous.processmonitor.datasources.SBOIDatasource" scope="singleton"<property name="domsPidGenLocation" value="http://achernar:7880/pidgenerator-service"/> <property name="domsRetries" value="3"/> <constructor-arg ref="sboi_config <property name="domsDelayBetweenRetries" value="100"/> </bean> <bean id="mpPakConfigmfPakConfig" class="dk.statsbiblioteket.newspaper.mfpakintegration.configuration.MfPakConfiguration"> <property name="databaseUrl" value="jdbc:postgresql://achernar/mfpak-devel"/> <property name="databaseUser" value="<mfpak db user>"/> <property name="databasePassword" value="<mfpak db pass>"/> </bean> <bean id="sboi" class="dk.statsbiblioteket.medieplatform.autonomous.processmonitor.datasources.SBOIDatasource"> <constructor-arg ref="sboi_config"/> </bean> <bean id="mfPak" class="dk.statsbiblioteket.newspaper.mfpakintegration.MfPakDataSource"> <constructor-arg ref="mpPakConfigmfPakConfig"/> </bean> <bean id="mfPakDAO" class="dk.statsbiblioteket.newspaper.mfpakintegration.database.MfPakDAO" scope="singleton"> <constructor-arg ref="mpPakConfigmfPakConfig"/> </bean> <!--Reserved name for the data sources list--> <util:list id="enricherList" list-class="java.util.ArrayList"> <ref bean="mfPakBatchEnricher"/> <ref bean="DOMSBatchEnricher"/> </util:list> <bean id="mfPakBatchEnricher" class="dk.statsbiblioteket.newspaper.processmonitor.backend.MfPakBatchEnricher"> <property name="mfpak" ref="mfPakDAO"/> </bean> <bean id="DOMSBatchEnricher" class="dk.statsbiblioteket.newspaper.processmonitor.backend.DOMSBatchEnricher"> <property name="fedora" ref="fedora"/> </bean> <bean id="fedora" class="dk.statsbiblioteket.doms.central.connectors.EnhancedFedoraImpl"> <constructor-arg name="creds" type="dk.statsbiblioteket.doms.webservices.authentication.Credentials" value="#{new dk.statsbiblioteket.doms.webservices.authentication.Credentials(sboi_config.domsUser,sboi_config.domsPassword)}"/> <constructor-arg name="fedoraLocation" value="#{sboi_config.domsLocation}"/> <constructor-arg name="pidGenLocation" value="#{sboi_config.domsPidGenLocation}"/> <constructor-arg <ref bean="mfPakDAO"></ref>name="thisLocation" value="#{null}"/> <constructor-arg name="maxTriesPut" value="#{sboi_config.domsRetries}"/> <constructor-arg name="maxTriesPost" value="#{sboi_config.domsRetries}"/> <constructor-arg name="maxTriesDelete" value="#{sboi_config.domsRetries}"/> </property><constructor-arg name="retryDelay" value="#{sboi_config.domsDelayBetweenRetries}"/> </bean> < <!--Reserved name for the data sources list--> <util:list id="dataSourcesList" list-class="java.util.ArrayList"> <ref bean="mfPak"/> <ref bean="sboi"/> </util:list> <bean id="statisticsService" class="dk.statsbiblioteket.newspaper.processmonitor.stats.StatisticsService"> <property name="statisticsBaseUrl" value="http://achernar:7820/statistics/statistics.html?batchid="/> </bean> <</beans> |
Changelog
Change log can be seen on github:
...