How to use velocity templates?

Yanduganov Andrey July 24, 2017

Hi.

I found many questions and answers about velocity templates in Confluence. And what about JIRA?

I have tried example from this page:

// Create the Velocity Context
Map context = MacroUtils.defaultVelocityContext();
context.put("myCustomVar", customVar);
context.put("otherCustomVar", otherCustomVar);
// Render the Template
String result = VelocityUtils.getRenderedTemplate("/com/myplugin/templates/macro.vm", context);

 but I cannot find appropriate packages for MacroUtils and VelocityUtils in JIRA.

What packages I need to user for it? Or does exists anything else way to use velocity templates in JIRA?

Thanks.

2 answers

3 votes
Yanduganov Andrey August 15, 2017

To use Velocity Template you need:

  1. add Scanned annotation to your class
  2. add TemplateRenderer field with ComponentImport annotation
  3. add TemplateRenderer to constructor
  4. use it

For example:

@Scanned
public class MyClass {
@ComponentImport
private final TemplateRenderer templateRenderer;

public MyClass(TemplateRenderer templateRenderer) {
this.templateRenderer = templateRenderer;
}
}

 After that you can use it, for example

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
Map<String, Object> context = Maps.newHashMap();
resp.setContentType("text/html;charset=utf-8");

context.put("key", "value");

templateRenderer.render("path_to_vm_template", context, resp.getWriter());
}
2 votes
somethingblue
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 26, 2017

Hi Yanduganov,

You'll want to use the JIRA templates and JSP's guide for Velocity Templates in JIRA.  MacroUtils and VelocityUtils appear to be for Confluence per the Confluence Velocity template documentation and I was unable to find references to those methods in the JIRA docs.

Cheers,

Branden

Gaston Valente
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 26, 2017

great doc, saves a lot of time, thanks!

Yanduganov Andrey July 26, 2017

Hi Branden.

Your answer isn't about templates which I meant.

I write JIRA plugin and I have servlet. And I wanna render it using velocity template. I tryed write HTML just in java but I think that it's a wrong way.

Suggest an answer

Log in or Sign up to answer