Former-commit-id:a02aeb236c
[formerly9f19e3f712
] [formerlya02aeb236c
[formerly9f19e3f712
] [formerly06a8b51d6d
[formerly 64fa9254b946eae7e61bbc3f513b7c3696c4f54f]]] Former-commit-id:06a8b51d6d
Former-commit-id:8e80217e59
[formerly3360eb6c5f
] Former-commit-id:377dcd10b9
35 lines
No EOL
1.9 KiB
XML
35 lines
No EOL
1.9 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"
|
|
xmlns:context="http://www.springframework.org/schema/context"
|
|
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">
|
|
<bean id="httpClient" class="com.raytheon.uf.common.comm.HttpClient" factory-method="getInstance">
|
|
<property name="socketTimeout" value="330000"/>
|
|
<property name="connectionTimeout" value="10000"/>
|
|
<property name="maxConnectionsPerHost" value="10"/>
|
|
</bean>
|
|
|
|
<bean id="baosPool" class="com.raytheon.uf.common.util.ByteArrayOutputStreamPool" factory-method="getInstance">
|
|
<property name="maxPoolSize" value="8"/>
|
|
<property name="initStreamSize" value="1"/>
|
|
<property name="maxStreamSize" value="5.5"/>
|
|
</bean>
|
|
|
|
<bean id="vizMonitorHandler" class="com.raytheon.uf.viz.core.status.VizMonitorHandler">
|
|
<property name="monitorEndpoint" value="edex.alerts.msg"/>
|
|
</bean>
|
|
|
|
<!-- FIXME: Uncomment to re-enable cache at CAVE startup
|
|
<bean id="gfeDiskCache" class="com.raytheon.uf.common.cache.DiskCache" init-method="activateCache">
|
|
<property name="name" value="GFE"/> -->
|
|
<!-- TODO: Make this an envionment variable that's passed in -->
|
|
<!-- Cache directory relative to caveData/etc/workstation/${host} default is diskCache, will be followed by ${NAME}/${PID} -->
|
|
<!-- <property name="baseCacheDir" value="diskCache"/> -->
|
|
<!-- Number of grids, to always allow in memory -->
|
|
<!-- <property name="sizeMemCacheMap" value="150"/>
|
|
</bean> -->
|
|
|
|
<bean class="com.raytheon.uf.common.geospatial.LogRedirector" factory-method="getInstance"/>
|
|
</beans> |