Issue #2359 minor request JVM startup safety

Change-Id: I17a5f3217ac5a2f2d53660bdb45a6009c8f27004

Former-commit-id: 24560cf307 [formerly 3916523cd702e367a6d66743b0517872475a0c36]
Former-commit-id: f83a473653
This commit is contained in:
Nate Jensen 2014-01-07 13:25:45 -06:00
parent 488956a259
commit ccfb2504cb
2 changed files with 2 additions and 2 deletions

View file

@ -10,5 +10,5 @@
</bean>
<!-- Instantiating class causes a thread to be run that will generate the warngen geometries -->
<bean class="com.raytheon.edex.plugin.warning.gis.GeospatialDataGeneratorThread"/>
<bean class="com.raytheon.edex.plugin.warning.gis.GeospatialDataGeneratorThread" depends-on="spatialQueryRegistered" />
</beans>

View file

@ -7,7 +7,7 @@
<bean id="querySpatialData" class="com.raytheon.uf.edex.database.handlers.SpatialDbQueryHandler"/>
<bean id="queryDataSet" class="com.raytheon.uf.edex.database.handlers.DbQueryHandlerSet"/>
<bean factory-bean="handlerRegistry" factory-method="register">
<bean id="spatialQueryRegistered" factory-bean="handlerRegistry" factory-method="register">
<constructor-arg value="com.raytheon.uf.common.geospatial.request.SpatialDbQueryRequest"/>
<constructor-arg ref="querySpatialData"/>
</bean>