Hi,
I have installed latest version of MySQL 8.X and now I want to update my Java project to connect to MySQL 8. My Java project is based on the Maven build tool. So, searching for the entry that I can add into pom.xml file of my project.
Share me the mysql 8 connector maven dependency code.
Thanks
Hi,
You can use following dependency code:
Thanks
Hi,
Please check:
Maven dependency for mysql - mysql-connector-java version 8.0.26 is released.
Thanks
Hi,
Add following code in pom.xml file:
<dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.26</version> </dependency>
Thanks
Hi,
If you are looking for the MySQL tutorials check:
if you are looking for Java tutorials check:
Thanks
Hi,
If you are looking for the MySQL tutorials check:
if you are looking for Java tutorials check:
Thanks
Ads