标签:success control ict str lib 解决办法 div basename jstl
il118_en_US.properties
il118_zh_CN.properties
<!-- 注册一个国际化资源管理器;id必须是messageSource --> <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basename" value="i18n"></property> </bean>
<form action=""> <fmt:message key="prop.username"/><input type="text"/> <fmt:message key="prop.password"/><input type="text"/> <input type="submit"/> </form>
注意事项:
1)必须经过springmvc处理
2)return不能是forword:或者redict:
l 若希望直接响应通过 SpringMVC 渲染的页面,可以使用 mvc:view-controller 标签实现
<!-- 直接配置响应的页面:无需经过控制器来执行结果 --> <mvc:view-controller path="/success" view-name="success"/> |
l 请求的路径:
l 配置<mvc:view-controller>会导致其他请求路径失效
l 解决办法:
<!-- 在实际开发过程中都需要配置mvc:annotation-driven标签,后面讲,这里先配置上 --> <mvc:annotation-driven/> |
标签:success control ict str lib 解决办法 div basename jstl
原文地址:http://www.cnblogs.com/limingxian537423/p/7282213.html