1.view視圖:及springmvc返回到前端的頁面,前面的全部跳轉都是view的列子在此就不在舉例了前端
2.在view界面中如何實現國際化?spring
2.1實現國際化有首先須要配置國際化資源文件:例如mvc
英文的i18n.properties
i18n.name=name i18n.age=age i18n.pwd=pwd
中文的i18n.properties
i18n.name=\u59D3\u540D
i18n.age=\u5E74\u9F84
i18n.pwd=\u5BC6\u7801spa
2..2在springMvc配置文件中配置MessageSourcecode
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property name="basename" value="i18n"></property>
</bean>
3.實現視圖之間的直接跳轉,不通過springMvnblog
/success:跳轉的路徑
<mvc:view-controller path="/success" view-name="success"/> <mvc:annotation-driven></mvc:annotation-driven>