在我的 Grails 应用程序中,要求允许在每个“组织”的基础上向用户显示不同的文本,但如果没有为组织定义覆盖文本,则退回到从 messages.properties 读取文本。
我正在使用一种类似于此处详述的方法,该方法在 http 请求的范围内运行良好,但是我现在还需要在每个组织的基础上定义电子邮件内容,这有点问题,因为电子邮件是异步发送的(使用异步邮件插件)。我当前的resolveCode()
实现如下所示:
public MessageFormat resolveCode(String code, Locale locale) {
Message msg = null
try {
Organisation currentOrganisation = currentOrganisationSessionProxy.currentSessionOrganisation
msg = Message.findByCodeAndLocaleAndOrganisation(code, locale, currentOrganisation)
} catch (Exception e) {
//handle exception
}
def format
if (msg) {
format = new MessageFormat(msg.text, msg.locale)
} else {
format = messageBundleMessageSource.resolveCode(code, locale)
}
return format
}
我稍微修改了 DatabaseMessageSource 实现,因为我需要使用会话范围的代理解析当前的“会话”组织。
任何人都可以提出一种异步发送本地化、特定于组织的电子邮件的好方法吗?我想我需要将组织 ID 与电子邮件一起保存,然后在我的DatabaseMessageSource
. 任何帮助表示赞赏。