]> git.argeo.org Git - gpl/argeo-slc.git/blob - modules/server/org.argeo.slc.webapp/WEB-INF/ajaxplorer-servlet.xml
Make forcCndImport configurable
[gpl/argeo-slc.git] / modules / server / org.argeo.slc.webapp / WEB-INF / ajaxplorer-servlet.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <beans xmlns="http://www.springframework.org/schema/beans"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
4 xmlns:tx="http://www.springframework.org/schema/tx"
5 xsi:schemaLocation="
6 http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
7 http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
8 http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd">
9
10
11 <import resource="classpath:/org/argeo/slc/web/ajaxplorer/file/spring.xml" />
12
13 <bean id="ajxpDriverHandler"
14 class="org.argeo.slc.web.ajaxplorer.mvc.AjxpDriverRequestHandler">
15 <property name="driver" ref="ajxpDriver" />
16 </bean>
17
18 <bean id="ajxpDriver" parent="driver.file.template">
19 <property name="basePath" value="/home/mbaudier/dev/work/dcrawTests" />
20 </bean>
21
22 <bean id="urlMapping"
23 class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
24 <property name="mappings">
25 <props>
26 <prop key="**">ajxpDriverHandler</prop>
27 </props>
28 </property>
29 </bean>
30
31 </beans>