I want to make a plugin that can read sprints, and display processed data. What modules should i use? I tried servlet, but it brings me to a new window (not inside jira). I tried a webpanel, but this doesn't let me create a new webpage.
Thanks in advance
Hello,
It depends where you want to show your data. If you want to show them in an issue, then you need a web panel. If you want to have a different window, then you should write a servlet. Servlet is executed inside Jira, you just need to put the correct decorator in the vm or soy template.
Or maybe consider using WebItem + Webwork if you want to display a link in the users menu.
Example:
https://bitbucket.org/mdoar/webwork-sample/overview
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Would i be able to change/adjust the calculated data manually in a servlet window (i don't want to change the actual sprint)? And than let's say save it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What kind of calculated data?
Basically, you will be able to do everything, what Jira Java Api lets you do.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So the sprint data will be collected with the URI (java api), and then i hope to procces it into a database. And afterwards i would like to edit the data in the database, but i'm wondering if that would be possible in a servlet?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, it is possible. Servlet is executed in the same Jira Context (inside Jira). It is not executed outside Jira.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Inside a servlet you can use Jira Java Api. No need for Rest Api or something like this.
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.
You are welcome!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I can't seem to find any information to use Jira Java Api, would there be issues if i use Rest Api?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is difficult to find info on Jira Software Java Api. You can read my article here:
Or you can use Jira Software Rest Api.
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.
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.