Merge "- Put duplicate code in flow_add_delete_test into a common function - Added...
[integration.git] / feature-selector / src / main / webapp / WEB-INF / feature-selector-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"
4   xmlns:context="http://www.springframework.org/schema/context"
5   xmlns:mvc="http://www.springframework.org/schema/mvc"
6   xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
7                       http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
8                       http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
9  
10         <context:component-scan base-package="org.opendaylight.release.app" />
11
12     <mvc:resources mapping="/js/**" location="/js/" />
13   <mvc:resources mapping="/css/**" location="/css/" />
14   <mvc:resources mapping="/img/**" location="/img/" />
15     <mvc:resources mapping="/download/**" location="/download/" />
16
17         <mvc:annotation-driven />
18         
19         <bean
20                 class="org.springframework.web.servlet.view.InternalResourceViewResolver">
21                 <property name="prefix">
22                         <value>/pages/</value>
23                 </property>
24                 <property name="suffix">
25                         <value>.jsp</value>
26                 </property>
27         </bean>
28  
29 </beans>