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 am trying to set up a bunch of Rest Endpoints in Script Runner to retrieve data from databases to populate drop-downs based on other fields in the form. I know you can use resources within the built-in scripts but my logic is going to be a bit more complicated and we might need to call multiple databases from an rest endpoint.
My question is: how do I set up a database 'resource' that controls the user/password and class definitions but then use the resource pool from within my rest endpoint code? All the examples I've found only hardcode the connection string, user/pasword, etc in the script itself in plain text. That's not an option for use and we'd prefer to use the resources to set the password in a single place and have all code just use that resource.
Any examples of doing this would help.
From the documentation
import com.onresolve.scriptrunner.db.DatabaseUtil
DatabaseUtil.withSql('local') { sql ->
sql.rows('select * from project')
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.