Has https://jira.atlassian.com/browse/JRA-29896 been fixed in Jira 6.x versions

Sreekar October 15, 2013

I tried googling and searching in answers.atlassian.com, but could find. Can you pls let me know if JNDI APIs are availabe for Jira plugins

1 answer

0 votes
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 15, 2013
RambanamP
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 16, 2013

you can use simple code to access JNDI as follows

// Get Context to connect to database as a datasource
    Context ctx = new InitialContext()
    if (ctx == null) {
        throw new Exception("No Context found!")
    }
    DataSource ds = (DataSource) ctx.lookup("java:comp/env/jdbc/MYDB")

i don't thing there is a jira api to access JNDI

Sreekar October 16, 2013
Hello Prasad, Thanks for the quick reply. I understand the solution and it looks more like a hack (changing class loader) I just wanted to check if there is any fix available around this in Jira 6.x versions. Thanks!

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events