I'm writing a bitbucket server plugin that writes to an external postgresql DB. I'm using PostgreSQL JDBC and getting the following error when calling Class.forName("org.postgresql.Driver") :
java.lang.ClassNotFoundException: org.postgresql.Driver not found
I've tried adding the following to my pom.xml but it results in the plugin failing to install:
<dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.4.1212</version> </dependency>
How can I write to an external PostgreSQL DB from my plugin?
Hi, have you solve the problem? I meet the similar question, I want to add mysql-connector-java.jar but failed...
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.38</version> <scope>compile</scope> </dependency>
if you solve the problem, please reply me,thanks a lot.
So one way to deal with this issue is to manually load the jar you want to use at runtime. This page was helpful: http://www.kfu.com/~nsayer/Java/dyn-jdbc.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try adding the jar file into
CATALINA_HOME/lib/
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.