Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version='1.0' encoding='UTF-8' ?>
- <!-- was: <?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:p="http://www.springframework.org/schema/p"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
- http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd">
- <bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
- <!-- the application context definition for the springapp DispatcherServlet -->
- <!--<bean name="/index.htm" class="com.fernando.controller"/>-->
- <!--
- Most controllers will use the ControllerClassNameHandlerMapping above, but
- for the index controller we are using ParameterizableViewController, so we must
- define an explicit mapping for it.
- -->
- <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
- <property name="mappings">
- <props>
- <prop key="index.htm">indexController</prop>
- </props>
- </property>
- </bean>
- <bean id="viewResolver"
- class="org.springframework.web.servlet.view.InternalResourceViewResolver"
- p:prefix="/WEB-INF/jsp/"
- p:suffix=".jsp" />
- <!--
- The index controller.
- -->
- <bean name="indexController"
- class="org.springframework.web.servlet.mvc.ParameterizableViewController"
- p:viewName="index" />
- </beans>
Advertisement
Add Comment
Please, Sign In to add comment