You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hello guys,
I have a big problem.
I'm using Active Objects in my application. With Active Objects I'm using jira database. I don't have problem with AO, It's working well.
But in my jira I need to get informations from another database (Oracle).
I put in my pom.xml:
<dependency>
<groupId>jdbc</groupId>
<artifactId>jdbc-oracle</artifactId>
<version>11.1.0.7</version>
</dependency>
When I put this, my plugin stop to work and I have this error:
Caused by: org.osgi.framework.BundleException: Unresolved constraint in bundle (CLASS_PLUGIN) [185]: Unable to resolve 185.0: missing requirement [185.0] osgi.wiring.package; (osgi.wiring.package=com.sun.security.auth.module)
When I change to:
<dependency>
<groupId>jdbc</groupId>
<artifactId>jdbc-oracle</artifactId>
<version>11.1.0.7</version>
<scope>provided</scope>
</dependency>
I don't have any error but when I run my code:
Class.forName("oracle.jdbc.driver.OracleDriver");
I have:
java.lang.ClassNotFoundException: oracle.jdbc.driver.OracleDriver not found by ... [166]
What can I do to fix this problem ?
thanks
Natively JIRA supports connections to Oracle databases (for storing JIRA data). However with JIRA 7, it only supports Oracle 12c. As such our installation packages are actually shipping an existing jdbc driver. I think this file is in the install folder/lib and tends to be named ojdbc7.jar or something alike. I think you might still be able to use this 12 driver for connecting to an 11 database, but I'm not sure.
I did notice that in the JIRA dbconfig.xml if you configure JIRA to use Oracle as the database that stores JIRA data, the format of the dbconfig lists the driver-class value as "oracle.jdbc.OracleDriver". But I see in your code it is listed as "oracle.jdbc.driver.OracleDriver". Try changing the class name to match my example and see if that works.
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.
Still the same issue. Trying for jira server 8.5.1 with
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>ojdbc8</artifactId>
<version>12.2.0.1</version>
</dependency>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Happy New Year! We hope you all had a safe and restful holiday season. 2020 was a unique year full of unforeseen events; however, as we enter the new year of 2021, we’re optimistic for the light at t...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.