21.13.3 视图-请求与视图名的映射

    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <beans xmlns="http://www.springframework.org/schema/beans"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xsi:schemaLocation="
    5. http://www.springframework.org/schema/beans
    6. http://www.springframework.org/schema/beans/spring-beans.xsd">
    7. <bean id="viewNameTranslator" class="org.springframework.web.servlet.view.DefaultRequestToViewNameTranslator"/>
    8. <bean class="x.y.RegistrationController">
    9. </bean>
    10. <!-- 请请求URL映射到控制器名 -->
    11. <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    12. <property name="prefix" value="/WEB-INF/jsp/"/>
    13. <property name="suffix" value=".jsp"/>
    14. </bean>
    15. </beans>