You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I know about
import com.onresolve.scriptrunner.runner.util.OSPropertyPersister def pluginSettings = OSPropertyPersister.getPluginSettings() def key = "key" def value = "my-value" // save value against key pluginSettings.put(key, value) // retrieve value for key def savedValue = pluginSettings.get(key)
But is there any other way to store data for later use in scripts? For example suppose I have a counter which is incremented for a specific kind of issue and I want to read it later...
Hi there,
I presume this data you wish to store is not in context of An issue or A project, but rather for the whole instance?
In that case, have you considered adding a table tot the Jira (or other accessible) database?
From groovy you could then access this data, this KB article should help you on your way:
https://scriptrunner.adaptavist.com/4.3.4/jira/recipes/misc/connecting-to-databases.html
Let me know if this helps!
Regards,
Jeroen
This is exactly what I am looking for. Is there a suggested way or guideline to add tables tot Jira database?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
Just creating tables in the Jira DB is strongly discouraged, since Jira will probably ignore these tables during upgrades etc ...
https://community.atlassian.com/t5/Jira-Core-questions/How-to-insert-a-custom-table-to-JIRA-DB/qaq-p/424568
A few options:
Regards,
Jeroen
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.