使用速度/自由标记模板的电子邮件国际化

如何使用模板引擎(如Velocity或FreeMarker)来构建电子邮件正文来实现i18n?

通常,人们倾向于创建模板,例如:

<h3>${message.hi} ${user.userName}, ${message.welcome}</h3>
<div>
   ${message.link}<a href="mailto:${user.emailAddress}">${user.emailAddress}</a>.
</div>

并创建一个资源包,其中包含以下属性:

message.hi=Hi
message.welcome=Welcome to Spring!
message.link=Click here to send email.

这就产生了一个基本问题:如果我的文件变得很大,包含许多行文本,则在单独的资源包 () 文件中翻译和管理每个文本行将变得乏味。.vm.properties

我试图做的是,为每种语言创建一个单独的文件,类似于,然后以某种方式告诉Velocity/ Spring根据输入区域设置选择正确的文件。.vmmytemplate_en_gb.vm, mytemplate_fr_fr.vm, mytemplate_de_de.vm

这在春天可能吗?或者我应该考虑更简单,更明显的替代方法吗?

注意:我已经看过Spring教程,介绍如何使用模板引擎创建电子邮件正文。但它似乎没有回答我在i18n上的问题。


答案 1

事实证明,使用一个模板和多种语言.属性文件胜过拥有多个模板。

这会产生一个基本问题:如果我的 .vm 文件变得很大,包含许多行文本,则在单独的资源包 (.properties) 文件中翻译和管理每个文件会变得很繁琐。

如果您的电子邮件结构在多个文件上重复,则更难维护。此外,还必须重新发明资源包的回退机制。资源包尝试在给定语言环境的情况下查找最接近的匹配项。例如,如果区域设置是 ,它会尝试按顺序查找以下文件,如果这些文件都不可用,则回退到最后一个文件。.vmen_GB

  • language_en_GB.属性
  • language_en.属性
  • 语言.属性

我将(详细)在这里发布我必须做些什么来简化在Velocity模板中阅读资源包。

访问速度模板中的资源包

弹簧配置

<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
    <property name="basename" value="content/language" />
</bean>

<bean id="velocityEngine" class="org.springframework.ui.velocity.VelocityEngineFactoryBean">    
    <property name="resourceLoaderPath" value="/WEB-INF/template/" />
    <property name="velocityProperties">
        <map>
            <entry key="velocimacro.library" value="/path/to/macro.vm" />
        </map>
    </property>
</bean>

<bean id="templateHelper" class="com.foo.template.TemplateHelper">
    <property name="velocityEngine" ref="velocityEngine" />
    <property name="messageSource" ref="messageSource" />
</bean>

模板助手类

public class TemplateHelper {
    private static final XLogger logger = XLoggerFactory.getXLogger(TemplateHelper.class);
    private MessageSource messageSource;
    private VelocityEngine velocityEngine;

    public String merge(String templateLocation, Map<String, Object> data, Locale locale) {
        logger.entry(templateLocation, data, locale);

        if (data == null) {
            data = new HashMap<String, Object>();
        }

        if (!data.containsKey("messages")) {
            data.put("messages", this.messageSource);
        }

        if (!data.containsKey("locale")) {
            data.put("locale", locale);
        }

        String text =
            VelocityEngineUtils.mergeTemplateIntoString(this.velocityEngine,
                templateLocation, data);

        logger.exit(text);

        return text;
    }
}

速度模板

#parse("init.vm")
#msg("email.hello") ${user} / $user,
#msgArgs("email.message", [${emailId}]).
<h1>#msg("email.heading")</h1>

我必须创建一个速记宏,以便从消息包中读取。它看起来像这样:msg

#**
 * msg
 *
 * Shorthand macro to retrieve locale sensitive message from language.properties
 *#
#macro(msg $key)
$messages.getMessage($key,null,$locale)
#end

#macro(msgArgs $key, $args)
$messages.getMessage($key,$args.toArray(),$locale)
#end

资源包

email.hello=Hello
email.heading=This is a localised message
email.message=your email id : {0} got updated in our system.

用法

Map<String, Object> data = new HashMap<String, Object>();
data.put("user", "Adarsh");
data.put("emailId", "adarsh@email.com");

String body = templateHelper.merge("send-email.vm", data, locale);

答案 2

这是Freemarker的解决方案(一个模板,几个资源文件)。

主程序

// defined in the Spring configuration file
MessageSource messageSource;

Configuration config = new Configuration();
// ... additional config settings

// get the template (notice that there is no Locale involved here)
Template template = config.getTemplate(templateName);

Map<String, Object> model = new HashMap<String, Object>();
// the method called "msg" will be available inside the Freemarker template
// this is where the locale comes into play 
model.put("msg", new MessageResolverMethod(messageSource, locale));

消息解析方法类

private class MessageResolverMethod implements TemplateMethodModel {

  private MessageSource messageSource;
  private Locale locale;

  public MessageResolverMethod(MessageSource messageSource, Locale locale) {
    this.messageSource = messageSource;
    this.locale = locale;
  }

  @Override
  public Object exec(List arguments) throws TemplateModelException {
    if (arguments.size() != 1) {
      throw new TemplateModelException("Wrong number of arguments");
    }
    String code = (String) arguments.get(0);
    if (code == null || code.isEmpty()) {
      throw new TemplateModelException("Invalid code value '" + code + "'");
    }
    return messageSource.getMessage(code, null, locale);
  }

}

免费标记模板

${msg("subject.title")}

推荐