Jira 9 project-centric view panel header

Hi @JoshuaPhillips,

How are you loading the page? What does the src/main/resources/atlassian-plugin.xml have?

For the example I provided, I have it loaded with a servlet

    <servlet key="page-servlet" class="com.mycompany.servlet.PageServlet">
        <url-pattern>/${atlassian.plugin.key}/mypage.page</url-pattern>
    </servlet>

and (and an example)

    @Override
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException {

       Map<String, Object> context = new HashMap<>();
       response.setContentType("text/html;charset=utf-8");

       renderer.render("templates/mypage.vm", context, response.getWriter());
    }

James.