Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Bamboo: Result decorator in servlet

S August 26, 2014

Hi,

I am writing a plugin which contains web-item and servlet.

<web-item key="key" name="webItem" section="chainResults.subMenu/chainResults" weight="60">

	<link linkId="link_to_servlet" absolute="false">/plugins/servlet/static?planKey=${planKey}&buildNumber=${buildNumber}</link>

</web-item>
<servlet name="Servlet" key="static-servlet" class="StaticServlet">
        <description>The My Servlet Plugin</description>
        <resource name="view" type="velocity" location="servlet.vm"/>
        <url-pattern>/static</url-pattern>
    </servlet>

public class StaticServlet extends HttpServlet{
    @Override
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException{
        response.setContentType("text/html;charset=utf-8");
        renderer.render("/servlet.vm", map, response.getWriter());
}
}
<html>
<head>
 <meta name="decorator" content="result">
</head>
<body>
...

When I am at Build summary or any other tab and click on web item, servlet has decorators and everything, but when I paste link to browser or reload servlet, there is an error (obviously).

Is there some way to process URL parameters "buildKey" and "buildNumber" so bamboo will know what decorator to use? I know how to do this in xwork but I want to use servlets for this task.

Thanks!

2 answers

1 accepted

0 votes
Answer accepted
S September 1, 2014

I have decided to use Xwork/actions. I wanted servlets because of velocity but I have no choice if I don't want to try random things for days.

0 votes
S August 31, 2014

I sucesfully retrieve immutablePlan and resultsSummary and pass it to velocity template as parameters

map.put("immutablePlan", getImmutableChain());
map.put("resultsSummary", getResultsSummary());
renderer.render("/template.vm", mamap, response.getWriter());

I think I am on the right way. Now my problem is how to pass these to decorator, so he knows what project, plan and build I am in.

Any ideas?

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events