All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.web.1.6.1.source-code.applicationContext.xml Maven / Gradle / Ivy

There is a newer version: 1.7.0
Show newest version
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">

<beans>

		<!--  application state module -->
	<bean id="applicationState"
		class="org.vfny.geoserver.global.ApplicationState">
		<constructor-arg ref="data"/>
		<constructor-arg ref="validation"/>
		<constructor-arg ref="config"/>
	</bean>
	
	<bean id="applicationStateRegisterar"
		class="org.vfny.geoserver.global.GeoServerServletContextInitializer">
		
		<constructor-arg type="java.lang.String" value="GeoServer.ApplicationState"/>
 		<constructor-arg ref="applicationState"/>
 	</bean>
 	
 	<!-- file publisher -->
	<bean id="filePublisher" class="org.geoserver.ows.FilePublisher">
		<constructor-arg ref="resourceLoader"/>
	</bean>
	
	
   <bean id="dispatcherMapping" 
    class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
	 <property name="alwaysUseFullPath" value="true"/>
	 <property name="mappings">
      <props>
        <prop key="/ows">dispatcher</prop>
        <prop key="/ows/**">dispatcher</prop>
        <prop key="/styles/**">filePublisher</prop>
        <prop key="/www/**">filePublisher</prop>
      </props>
    </property>

  </bean>
 	
</beans>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy