Install MariaDB Connector/J
This page is part of MariaDB's Documentation.
The parent of this page is: MariaDB Connector/J
Topics on this page:
Overview
MariaDB Connector/J is usually installed using Maven or by manually downloading the JAR file.
Install MariaDB Connector/J via JAR
To download the JAR file manually:
Go to the MariaDB Connector/J download page
Within the "Product" dropdown, choose the "Java 8+ connector" or "Java 7 connector".
In the "Version" dropdown, choose the desired version.
Click the "Download" button to download the JAR file.
When the JAR file finishes downloading, place it into the relevant directory on your system.
Similarly, install dependency JAR files, if any used.
Install MariaDB Connector/J via Maven
Maven can install MariaDB Connector/J as a dependency of your application during build. Set the <version>
element to correspond to the version of MariaDB Connector/J that you would like to install.
To use Maven to install MariaDB Connector/J, add the dependency to your pom.xml
file:
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.3.3</version>
</dependency>
For additional information on available releases, see the "
".Depending on the features you plan to use, you may need to add some additional dependencies to pom.xml
.
To use connection pools with commons-dbcp2
from Apache Commons, add the following dependency to your pom.xml
file:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>3.3.3</version>
</dependency>