]> git.argeo.org Git - lgpl/argeo-commons.git/blob - WEB-INF/webdav-servlet.xml
Prepare next development cycle
[lgpl/argeo-commons.git] / WEB-INF / webdav-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 <bean id="webdavServlet" class="org.argeo.server.jackrabbit.webdav.WebDavServlet">
11 <property name="repository" ref="repository" />
12 <property name="resourceConfiguration" value="osgibundle:/WEB-INF/config.xml" />
13 </bean>
14
15 <bean
16 class="org.springframework.web.servlet.handler.SimpleServletPostProcessor" />
17
18 <bean id="servletHandler"
19 class="org.springframework.web.servlet.handler.SimpleServletHandlerAdapter" />
20
21 <bean id="urlMapping"
22 class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
23 <property name="mappings">
24 <props>
25 <prop key="**">webdavServlet</prop>
26 </props>
27 </property>
28 </bean>
29
30 </beans>