`

Struts源码研究 - Bean-Message标签篇

阅读更多

Struts中非常常用的有这样的一个标签:
  <bean:message key="welcome.title"/>
  众所周知,这个标签做的事情是这样的:
  访问在struts-config.xml中定义的资源文件,一般是application.properties,一般是这样定义的:
  <message-resources parameter="resources.application"/>
   根据以上的定义,Struts将到WEB-INF/classes/resource/下去找application.properties文件,这是 从以上配置信息的表面上看起来是这样,但通过查看Struts的源码,可以看到如下的代码:在 org.apache.struts.util.PropertyMessageResources类中,有如下的代码:
  
  通过这段代码,可以看到
  
  A、.properties扩展名是写死在代码中的,所以资源文件必须使用这个扩展名
  B、Struts并不是单纯去寻找application.properties文件,而是首先找到application,赋给name变量然后加上下划线"_",然后再加上localeKey(如zh,en),然后再加上.properties
  C、确定了文件名之后,Struts使用了ClassLoader类的getResourceAsStream方法得到了一个InputStream
  D、然后Struts使用了java.util.Properties类的load方法,将资源文件中的所有资源读出放到了一个HashMap里面


  E、然后Struts就可以根据key值取出不同的message给前台了
  
  // Set up to load the property resource for this locale key, if we can
  String name = config.replace(".", "/");
  if (localeKey.length() > 0) {
  name += "_" + localeKey;
  }
  
  name += ".properties";
  InputStream is = null;
  Properties props = new Properties();
  
  // Load the specified property resource
  if (log.isTraceEnabled()) {
  log.trace(" Loading resource "" + name + """);
  }
  
  ClassLoader classLoader = Thread.currentThread().getContextClassLoader();
  if (classLoader == null) {
  classLoader = this.getClass().getClassLoader();
  }
  
  is = classLoader.getResourceAsStream(name);
  if (is != null) {
  try {
  props.load(is);
  
  } catch (IOException e) {
  log.error("loadLocale()", e);
  } finally {
  try {
  is.close();
  } catch (IOException e) {
  log.error("loadLocale()", e);
  }
  }
  }
  
   D步骤中的load方法可以参看JDK的帮助文档,load方法要求这个资源文件必须以ISO8859编码进行书写方能正确解析 所以,如果我们在资源文件中写入了中文,并在运行时出现了中文编码问题(?出现),那么只需确认您的资源文件是否是以ISO8859为编码进行书写的即可
  另外,Struts在查找资源文件时,首先是按照如上的描述进行$Filename_$Locale.properties文件的查找如果他 找不到,那么他就会用默认的$Filename.properties来找,如果还找不到,那就报错了这个Struts的查找顺序并不是我的杜撰,有如下 Struts源码为证(这个方法是PropertyMessageResources.java中的):
  public String getMessage(Locale locale, String key) {
  
  if (log.isDebugEnabled()) {
  log.debug("getMessage(" + locale + "," + key + ")");
  }
  
  // Initialize variables we will require
  String localeKey = localeKey(locale);
  String originalKey = messageKey(localeKey, key);
  String messageKey = null;
  String message = null;
  int underscore = 0;
  boolean addIt = false; // Add if not found under the original key
  
  // Loop from specific to general Locales looking for this message
  while (true) {
  
  // Load this Locale"s messages if we have not done so yet
  loadLocale(localeKey);
  
  // Check if we have this key for the current locale key
  messageKey = messageKey(localeKey, key);
  synchronized (messages) {
  message = (String) messages.get(messageKey);
  if (message != null) {
  if (addIt) {
  messages.put(originalKey, message);
  }
  return (message);
  }
  }
  
  // Strip trailing modifiers to try a more general locale key
  addIt = true;
  underscore = localeKey.lastIndexOf("_");
  if (underscore < 0) {
  break;
  }
  localeKey = localeKey.substring(0, underscore);
  
  }
  
  // Try the default locale if the current locale is different
  if (!defaultLocale.equals(locale)) {
  localeKey = localeKey(defaultLocale);
  messageKey = messageKey(localeKey, key);
  loadLocale(localeKey);
  synchronized (messages) {
  message = (String) messages.get(messageKey);
  if (message != null) {
  messages.put(originalKey, message);
  return (message);
  }
  }
  }
  
  // As a last resort, try the default Locale
  这里可以看到Struts最后将localeKey赋空
  这样资源文件就是$Filename.properties了
  localeKey = "";
  messageKey = messageKey(localeKey, key);
  loadLocale这个方法将读取资源文件,填入HashMap
  这个方法的代码在上面已经列出来了
  loadLocale(localeKey);
  synchronized (messages) {
  message = (String) messages.get(messageKey);
  if (message != null) {
  messages.put(originalKey, message);
  return (message);
  }
  }
  
  // Return an appropriate error indication
  if (returnNull) {
  return (null);
  } else {
  return ("???" + messageKey(locale, key) + "???");
  }
  
  }
  
  至于这个$Locale的值是多少,通过很长时间的查找之后,发现了这样一些代码:
  在org.apache.struts.util.RequestUtils类中的600多行左右,有这样一个方法:
  public static Locale getUserLocale(HttpServletRequest request, String locale) {
  Locale userLocale = null;
  HttpSession session = request.getSession(false);
  
  if (locale == null) {
  locale = Globals.LOCALE_KEY; //这个值是org.apache.struts.action.LOCALE
  }
  
  // Only check session if sessions are enabled
  if (session != null) {
  userLocale = (Locale) session.getAttribute(locale);
  }
  
  if (userLocale == null) {
  // Returns Locale based on Accept-Language header or the server default
  userLocale = request.getLocale();
  }
  
  return userLocale;
  }
  
  可以看出,Struts将Locale的实例对象放到了session中,但是他什么时候将这个对象放到session里面的,尚未找到(很多配置在ActionServlet中读取并储存的,因为这个类是第一个启动的类,但这个类中没发现Locale对象的储存)

分享到:
评论

相关推荐

    struts-bean:message使用

    这篇博客文章可能详细解释了如何使用`&lt;bean:message&gt;`标签来实现动态消息的显示。 在Struts框架中,`struts-bean`库包含了几个与UI相关的标签,`&lt;message&gt;`就是其中之一。这个标签主要用于从资源包(Resource ...

    struts-1.2.9-src源码类库

    总的来说,"struts-1.2.9-src"源码库是学习和研究Struts框架的经典资料,通过阅读和分析,开发者可以更好地掌握Java Web开发,特别是Struts框架的应用技巧和内部机制,为实际项目开发提供坚实的理论基础和技术支持。

    taglib(struts1.3)源码

    9. 进阶研究:随着Struts1.3逐渐被Struts2或其他现代框架取代,理解源码还可以帮助我们更好地过渡到新框架,例如Spring MVC或JSF,因为它们的标签库机制也遵循类似的原理。 10. 社区支持:Apache Struts拥有活跃的...

    struts in action 源码-2

    通过研究"Struts in Action 源码-2",开发者能够了解如何在实际项目中配置和使用Struts框架,以及如何组织和编写Action、Form Bean、配置文件等。此外,它还展示了如何利用Struts实现业务逻辑、数据验证、错误处理等...

    struts1.2源码研究

    配置文件中的`&lt;message-resources/&gt;`定义了资源文件,`&lt;data-sources/&gt;`定义了数据源,`&lt;plug-in/&gt;`定义了插件。 **多模块配置**: 在web.xml中,可以通过`&lt;context-param&gt;`配置多个模块,每个模块可以有自己的...

    servlet+struts源码

    通过研究这些源码,开发者可以更好地理解MVC模式在Struts中的实现,以及它如何与Servlet容器(如Tomcat)协作。同时,这也为自定义行为、优化性能或者解决已知问题提供了可能。例如,你可以查看`RequestProcessor`...

    搭建struts1.x环境例子源码

    &lt;message-resources parameter="com/example/YourResourceBundle"/&gt; &lt;/struts-config&gt; ``` **步骤五:编写Action类** 在src目录下创建对应的Action类,如YourActionClass.java,继承自org.apache.struts.action....

    struts标签库使用

    使用`&lt;bean:message&gt;`和`&lt;fmt:message&gt;`标签可以实现国际化。这些标签从资源文件中获取特定语言的文本,使应用能适应不同地区和语言的用户。 6. **实际应用示例** 在一个典型的Struts应用中,用户填写表单(使用...

    Struts登录源码,仅供研究

    Struts是一个基于MVC(Model-View-Controller)设计模式的Java Web开发框架,由Apache软件基金会维护。...通过研究这个例子,你可以了解到Struts框架的基本工作原理,并逐步掌握Web开发的基础技能。

    Struts1基本配置

    本篇将深入讲解Struts1的基本配置,帮助你理解和掌握这个框架的核心概念。 **1. 框架概述** Struts1是由Apache软件基金会开发的开源框架,它的主要目的是为了简化Java Servlet和JSP(JavaServer Pages)的开发,...

    struts国际化的使用

    这里`message-resources`标签用于指定存放多语言资源文件的位置。默认情况下,资源文件放在`classes`目录下的`resources`文件夹中,主要文件名为`application.properties`,中文版文件名则为`application_zh_...

Global site tag (gtag.js) - Google Analytics