Spring Framework

Spring Projects

Spring Project 1

adplus-dvertising
ChainingViewResolvers in Spring MVC
Previous Home Next

The Spring MVC provide the facility to configure more then one view resolvers in the application. It means that this view resolver provide the facility to user, if he want to use more then one view resolver in single application using the ChaningViewResolver. This view resolver will used two resolver first is XmlViewResolver and second is InternalResourceViewResolver. This view resolver are configure in following type:

<bean id="viewResolver" 
class="org.springframework.web.servlet.
view.XmlViewResolver">
<property name="order" value="1"/>
<property name="location">
<value>/WEB-INF/spring-views.xml</value>
</property>
</bean>

<bean id="jspViewResolver"
class="org.springframework.web.
servlet.view.InternalResourceViewResolver" >
<property name="order" value="0"/>
<property name="viewClass" value=
"org.springframework.web.servlet.view.JstlView"/>
<property name="prefix">
<value>/WEB-INF/jsp/</value>
</property>
<property name="suffix">
<value>.jsp</value>
</property>
</bean>
Previous Home Next