我想更改JIRA的通知行为,并为某些问题事件添加其他接收器。我知道我可以注册EventPublisher
并抓住所有必要的事件。
public class MyIssueCreatedResolvedListenerImpl implements InitializingBean, DisposableBean {
private final EventPublisher eventPublisher;
public MyIssueCreatedResolvedListenerImpl(EventPublisher eventPublisher) {
this.eventPublisher = eventPublisher;
}
@Override
public void afterPropertiesSet() throws Exception {
eventPublisher.register(this);
}
@Override
public void destroy() throws Exception {
eventPublisher.unregister(this);
}
@EventListener
public void onIssueEvent(IssueEvent issueEvent) {
// Process the issue events. I'm using the code presented below.
}
}
在onIssueEvent
中,我想重用JIRA中现有的电子邮件模板,并将SMTPMailServer
对象发送给其他接收者。目前我正在使用以下代码来读取和填充速度模板。
ApplicationProperties ap = ComponentAccessor.getApplicationProperties();
String baseUrl = ap.getString(APKeys.JIRA_BASEURL);
String webworkEncoding = ap.getString(APKeys.JIRA_WEBWORK_ENCODING);
VelocityManager vm = ComponentAccessor.getVelocityManager();
VelocityParamFactory vp = ComponentAccessor.getVelocityParamFactory();
Map context = vp.getDefaultVelocityParams();
context.put("baseurl", baseUrl);
context.put("currentTimestamp", new Date());
context.put("issue", issueEvent.getIssue());
String renderedText = vm.getEncodedBody("templates/email/html/", "issueclosed.vm", baseUrl, webworkEncoding, context);
SMTPMailServer mailServer = MailFactory.getServerManager().getDefaultSMTPMailServer();
Email email = new Email("<E-Mail-Adress>");
email.setMimeType("text/html");
email.setEncoding("utf-8");
email.setBody(renderedText);
try {
mailServer.send(email);
} catch (MailException e) {
e.printStackTrace();
}
以上代码工作部分。填写了几个字段,但我仍然错过了电子邮件通知中的CSS,图片或i18n。请注意,我不会使用市场上的任何其他附加组件。
这是重用JIRA模板的正确实现吗?
如何包含CSS,图片,i18n等?或者我可以使用不同的方法吗?
答案 0 :(得分:2)
填充了几个字段,但我仍然想念CSS,图像或i18n
How Does Internationalisation Work?
在实施国际化(也称为' i18n ',因为'i'和'n'之间有18个字母)支持您的插件之前,了解插件如何国际化非常重要。
首先,必须将插件中的所有消息移到代码之外的插件中的属性文件中。属性文件存储插件内所有消息的默认(英语)翻译。属性文件格式是key = value格式,其中键用于引用代码中的资源,值是英语的默认消息。
You can't use /images/ in your path unless you map the directory.
Including Javascript and CSS resources:
对于每个资源,资源的位置应与插件JAR文件中资源的路径匹配。资源路径命名为您的插件,因此它们不会与具有相同位置的其他插件中的资源冲突(与i18n或Velocity资源不同)。但是,您可能会发现使用特定于插件的路径名与这些其他类型保持一致非常方便。
要在使用插件的页面中包含自定义Web资源,请使用#requireResource Velocity宏。