一 配置Spring标签库与资源库
1 配置Spring标签库
web.xml
- <!--spring 标签库-->
- <jsp-config>
- <taglib>
- <taglib-uri>/spring</taglib-uri>
- <taglib-location>/WEB-INF/spring.tld</taglib-location>
- </taglib>
- <taglib>
- <taglib-uri>/spring-form</taglib-uri>
- <taglib-location>/WEB-INF/spring-form.tld</taglib-location>
- </taglib>
- </jsp-config>
2 配置Spring资源库
applicationContext.xml
- <!--配置 spring 资源库-->
- <bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
- <property name="basename">
- <value>com.demo.spring.resources.ApplicationResources</value>
- </property>
- </bean>
3 创建资源库文件
在目录下新建不同语言的资源文件
ApplicationResources.properties
ApplicationResources_en.properties
ApplicationResources_zh_CN.properties
二 然后 根据你的需要 标签化JSP页面中的文字
三 创建资源文件
阅读(3681) | 评论(0) | 转发(0) |