最近在使用jfinal,如果使用jsp作为展现层的文件,使用jfinal的国际化很简单,直接 I18N.getText("key")就可以了,如果使用freemarker就没这么简单了,不能所有的国际化文字都通过 Controller 层的setAttr进行设置,然后在 html 文件中进行${...},这样的操作确实能实现国际化,但也太麻烦了,于是抽时间在网上搜索国际化相关的资料,终于找到解决方案,现在把实现方式共享出来,方便其它使用者快速使用,不必再浪费时间,哈哈。
1、 修改jfinal的源代码文件 I18N
(之所以修改,是因为需要这个类中的国际化文件数据获取)
代码:
增加全局变量
private static ResourceBundleModel resBundleModel = null;
增加public函数
public static ResourceBundleModel getResourceBundleModel() {
if(resBundleModel == null)
{
ResourceBundle RESOURCE_BUNDLE = ResourceBundle.getBundle(baseName, defaultLocale);
resBundleModel = new ResourceBundleModel(RESOURCE_BUNDLE, new BeansWrapper());
}
return resBundleModel;
}
2、在你的拦截器中进行拦截设置
代码:
public void intercept(ActionInvocation ai) {
Controller c = ai.getController();
c.setAttr("bundle",I18N.getResourceBundleModel());
ai.invoke();
}
3、在freemarker模板文件中按如下方式引用即可
${bundle["key"]}
大功告成!希望对大家有用!