Struts源码研究 - Bean-Message标签篇 - 编程入门网
Struts源码研究 - Bean-Message标签篇时间:2011-08-18Struts中非常常用的有这样的一个标签: <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); } } } Struts源码研究 - Bean-Message标签篇(2)时间:2011-08-18D步骤中的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; b |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |