How can I achieve i18n using a templating engine such as Velocity or FreeMarker for constructing email body?
Typically people tend to create templates like:
<h3>${message.hi} ${user.userName}, ${message.welcome}</h3>
<div>
${message.link}<a href="mailto:${user.emailAddress}">${user.emailAddress}</a>.
</div>
And have a resource bundle created with properties like:
message.hi=Hi
message.welcome=Welcome to Spring!
message.link=Click here to send email.
This creates one basic problem: If my .vm files becomes large with many lines of text, it becomes tedious to translate and manage each of them in separate resource bundle (.properties) files.
What I am trying to do is, have a separate .vm file created for each language, something like mytemplate_en_gb.vm, mytemplate_fr_fr.vm, mytemplate_de_de.vmand then somehow tell Velocity/Spring to pick up the right one based on the input Locale.
Is this possible in Spring? Or should I be looking at perhaps more simple and obvious alternative approaches?
Note: I have already seen the Spring tutorial on how to create email bodies using templating engines. But it doesn’t seem to answer my question on i18n.
It turns out using one template and multiple language.properties files wins over having multiple templates.
It is even harder to maintain if your email structure is duplicated over multiple
.vmfiles. Also, one will have to re-invent the fall-back mechanism of resource bundles. Resource bundles try to find the nearest match given a locale. For example, if the locale isen_GB, it tries to find the below files in order, falling back to the last one if none of them is available.I will post (in detail) what I had to do to simplify reading resource bundles in Velocity templates here.
Accessing Resource Bundle in a Velocity template
Spring Configuration
TemplateHelper Class
Velocity Template
I had to create a short-hand macro,
msgin order to read from message bundles. It looks like this:Resource Bundle
Usage