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