The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Velocity ServletContext

PavolL
April 17, 2014

Hi,

How I can access attributes from Velocity template stored in Servlet Context

I have listerer

public class StartListener implements ServletContextListener {

    private static final Logger log = LoggerFactory.getLogger(StartListener.class);

    @Override
    public void contextInitialized(ServletContextEvent sce) {
        log.info("App starts");

        ServletContext servletContext = sce.getServletContext();
        servletContext.setAttribute("links", new Links());
    }

    @Override
    public void contextDestroyed(ServletContextEvent sce) {
        log.info("App ends");
    }
}

In servlet I can do

Links links = (Links) getServletContext().getAttribute("links");

But I want to accses "links" directly from velocity template.

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Frédéric Tardieu_huminder_
Atlassian Partner
April 17, 2014

Hi,

Did you try to do

${links}

in your Velocity template?

Fred

TAGS
AUG Leaders

Atlassian Community Events