Project

General

Profile

1 32937 eri.katsar
<beans xmlns="http://www.springframework.org/schema/beans"
2
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
	xmlns:context="http://www.springframework.org/schema/context"
4
	xsi:schemaLocation="http://www.springframework.org/schema/beans
5
	http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
6
	http://www.springframework.org/schema/context
7
	http://www.springframework.org/schema/context/spring-context-2.5.xsd">
8
9
	<import resource="classpath*:/eu/dnetlib/data/search/web/api/dispatcher-servlet.xml"/>
10
11
    <bean id="viewResolver"
12
          class="org.springframework.web.servlet.view.UrlBasedViewResolver">
13
        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
14
        <property name="prefix" value="/WEB-INF/pages/"/>
15
        <property name="suffix" value=".jsp"/>
16
    </bean>
17
</beans>