I am trying to build a confluence servlet plugin module. I have put the javascript and css code in the generated files after running:
atlas-create-confluence-plugin
My question is where does the container expect to find the <ARTIFACT-ID>.js and <ARTIFACT-ID>.css files?
More specifically in the servlet code how do I construct the:
<script type='' src=''></script> <link rel='' href='>
so that the running servlet can find them. Or are they not required since their paths are already in the plugin descriptor?
In atlassian-plugin.xml you have something like this:
<web-resource key="my-web-resources" name=" Web Resource"> <resource name="list.js" type="download" location="js/list.js"/> <resource name="list.css" type="download" location="css/list.css"/> <resource name="images/" type="download" location="images"/> </web-resource>
In your servlet template, add...
#requireResource("com.example.confluence.plugin.plugin-artifact-id:my-web-resources")
...where in your pom.xml groupId is com.example.confluence.plugin and artifactId is plugin-artifact-id.
This will inject your JS & CSS in the correct place in the header.
This assumes that you're using velocity templates in your servlet code, just like the generated LicenseServlet.
I do not fully understand how to use velocity templates yet. This is a Calendar plugin that was a stand-alone web-app and I am currently trying to get it to run as a servlet plugin.
So one follow-up question would be, are there any velocity template functions that generate tables?
Second, If I use the current html print statements, how do I construct manually, what would be injected in the header?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you run atlas-create-confluence-plugin-module and then select Licensing API support from the list, it will produce a fully working servlet which uses velocity for tyhe HTML layout. That should give you a kick-start with example code.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.