事实证明,使用一个模板和多种语言.属性文件胜过拥有多个模板。
这会产生一个基本问题:如果我的 .vm 文件变得很大,包含许多行文本,则在单独的资源包 (.properties) 文件中翻译和管理每个文件会变得很繁琐。
如果您的电子邮件结构在多个文件上重复,则更难维护。此外,还必须重新发明资源包的回退机制。资源包尝试在给定语言环境的情况下查找最接近的匹配项。例如,如果区域设置是 ,它会尝试按顺序查找以下文件,如果这些文件都不可用,则回退到最后一个文件。.vm
en_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);