how to add same macro on single confluence page and handle macro context in execute?

Ambar Patil April 12, 2017

I have created one grate macro, which have two parameters. These parameter I am accessing in execute method of macro class.

Now, when I am adding macro on confluence page it is working as I am expecting, but issue accurs when we are adding same macro two/multiple time on a single page. Here in this case both macro has diffrent parameter values. So both macro need to give diffrent out put as per parameter, but both macro showing the result as per the last added macro parameter.

And one more thing we are calling some Rest methods on page load, which renderd the out put of macro in table.

When i debug the issue come to know the macro context get updated as per the last macro parameter. 

Now here I want's to handle macro parameter both/multiple macro saperatly. Any suggession here...

 

1 answer

0 votes
Sreenivasaraju P
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.
April 12, 2017

Suggest you cross check your code. You would have declared some variables as global. This could cause , similar issue. 

Ambar Patil April 12, 2017

I cross checked it but no global veriables are there...
see following method I am using...

@Override
    public String execute(Map<String, String> stringStringMap, String s, ConversionContext conversionContext) throws MacroExecutionException {
        Map<String, Object> macroContext = MacroUtils.defaultVelocityContext();
        long pageId = conversionContext.getEntity().getId();
        String searchScope = stringStringMap.get("searchScope");
        String rootPageTitle = stringStringMap.get("rootPage");
        String spaceId = searchScope;
        boolean isRootPageContext=false;

        if(rootPageTitle !=null) {
            String[] splitValue = rootPageTitle.split(":");
            if(splitValue.length > 1){
                spaceId= splitValue[0];
            }else{
                spaceId = conversionContext.getSpaceKey();
                Page rootPage = pageManager.getPage(spaceId,rootPageTitle);
                pageId = rootPage.getId();
                isRootPageContext=true;
            }
        }

 /*
  ..
  ..
  .. some buisness logic....
 */ 



return VelocityUtils.getRenderedTemplate(resultTemplate, macroContext);
}

Now, what happening when there is only one map all is good. But when I add second macro "macroContext" data update for second macro parameter.. 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events