快速业务通道

Struts源码研究 - Bean-Message标签篇 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-15
oolean 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源码研究 - Bean-Message标签篇(3)

时间:2011-08-18

这里可以看到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对象的储存)

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号