如何配置Struts2全局資源包
通常情況下,您可能需要一個全局資源包(屬性文件)來存儲信息,可用於在應用程序中的所有類。
在Struts2,有三種方式來配置全局資源包:
1. struts.properties
配置全局資源包在 “struts.properties” 文件,在這裡你定義一個名為“global.properties”的屬性文件為全局資源包。
struts.custom.i18n.resources = global
對於多個資源包,隻是用逗號分隔屬性文件。
struts.custom.i18n.resources = global, another-properties-file
2. struts.xml
或者,可以配置全局資源包在 struts.xml 配置文件中的常量值。
<struts> <constant name="struts.custom.i18n.resources" value="global" /> </struts>
3. listener
最後一個方法是使用servlet監聽器加載一個屬性文件作為全局資源包。
package com.gitbook.netmon.listener; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; import com.opensymphony.xwork2.util.LocalizedTextUtil; public class GlobalMessagesListener implements ServletContextListener { private static final String DEFAULT_RESOURCE = "global"; public void contextInitialized(ServletContextEvent arg0) { LocalizedTextUtil.addDefaultResourceBundle(DEFAULT_RESOURCE); } public void contextDestroyed(ServletContextEvent arg0) { } }
web.xml
<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd" > <web-app> <display-name>Struts 2 Web Application</display-name> <filter> <filter-name>struts2</filter-name> <filter-class>org.apache.struts2.dispatcher.FilterDispatcher</filter-class> </filter> <filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <listener> <listener-class> com.gitbook.netmon.listener.GlobalMessagesListener </listener-class> </listener> </web-app>
下載源代碼(globalresource)– http://pan.baidu.com/s/1sj1Rg7r