2016-03-11 22:54:45 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<beans xmlns="http://www.springframework.org/schema/beans"
|
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
|
|
|
|
|
xmlns:mvc="http://www.springframework.org/schema/mvc"
|
|
|
|
|
xsi:schemaLocation="
|
|
|
|
|
http://www.springframework.org/schema/beans
|
|
|
|
|
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
|
|
|
|
|
http://www.springframework.org/schema/context
|
|
|
|
|
http://www.springframework.org/schema/context/spring-context-4.2.xsd
|
|
|
|
|
http://www.springframework.org/schema/mvc
|
|
|
|
|
http://www.springframework.org/schema/mvc/spring-mvc-4.2.xsd">
|
|
|
|
|
|
|
|
|
|
<mvc:annotation-driven content-negotiation-manager="contentNegotiationManager" />
|
|
|
|
|
<context:component-scan base-package="org.baeldung.spring.controller" />
|
|
|
|
|
<bean id="viewResolver"
|
|
|
|
|
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
|
|
|
|
|
<property name="prefix" value="/WEB-INF/view/" />
|
|
|
|
|
<property name="suffix" value=".jsp" />
|
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
|
|
<mvc:view-controller path="/sample.html" view-name="sample" />
|
|
|
|
|
|
|
|
|
|
<!-- Content strategy using path extension -->
|
|
|
|
|
<bean id="contentNegotiationManager"
|
|
|
|
|
class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean">
|
2016-03-13 20:21:35 -04:00
|
|
|
<property name="favorPathExtension" value="false" />
|
|
|
|
|
<property name="favorParameter" value="true"/>
|
2016-03-11 22:54:45 -05:00
|
|
|
<property name="parameterName" value="mediaType"/>
|
|
|
|
|
<property name="ignoreAcceptHeader" value="true" />
|
2016-03-13 20:21:35 -04:00
|
|
|
<property name="defaultContentType" value="application/json" />
|
2016-03-11 22:54:45 -05:00
|
|
|
<property name="useJaf" value="false" />
|
|
|
|
|
|
|
|
|
|
<property name="mediaTypes">
|
|
|
|
|
<map>
|
|
|
|
|
<entry key="json" value="application/json" />
|
|
|
|
|
<entry key="xml" value="application/xml" />
|
|
|
|
|
</map>
|
|
|
|
|
</property>
|
|
|
|
|
</bean>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</beans>
|