웹이야기

MySQL 드라이버 다운로드 본문

D/MySQL

MySQL 드라이버 다운로드

yeon.Biju 2020. 2. 17. 16:53

MySQL driver  다운로드 하는 방법

 

1. pom.xml (메이븐을 이용)

 

mysql-connector-java 부분에

<version5.1.31</version>

와 같이 버전이 기입되어 있는데, 다운받고자 하는 버전으로 수정한다.

 

1) 버전은 설치되어 있는 버전의 MySQL로 하면 좋을 것 같다.

2) 다운받고자 하는 버전이 있는지 없는지 여부는  https://mvnrepository.com/ 에서 확인할 수 있다.

 

https://mvnrepository.com/artifact/mysql/mysql-connector-java

 

Maven Repository: mysql » mysql-connector-java

JDBC Type 4 driver for MySQL VersionRepositoryUsagesDate8.0.x8.0.19Central37Dec, 20198.0.18Central108Sep, 20198.0.17Central115Jul, 20198.0.16Central156Apr, 20198.0.15Central167Jan, 20198.0.14Central15Jan, 20198.0.13Central151Sep, 20188.0.12Central66Jun, 20

mvnrepository.com

 

2. MySQL 사이트에서 다운로드

가장 최신 버전 다운로드

https://dev.mysql.com/downloads/connector/j/

 

MySQL :: Download Connector/J

MySQL Connector/J 8.0 is highly recommended for use with MySQL Server 8.0, 5.7, 5.6, and 5.5. Please upgrade to MySQL Connector/J 8.0.

dev.mysql.com

 

이전 버전 다운로드

https://downloads.mysql.com/archives/c-j/

 

 

MySQL :: Download MySQL Connector/J (Archived Versions)

Please note that these are old versions. New releases will have recent bug fixes and features! To download the latest release of MySQL Connector/J, please visit MySQL Downloads. MySQL open source software is provided under the GPL License.

downloads.mysql.com

에서 원하는 버전을 다운받을 수 있다.

 

platform independent 버전으로 다운받으면 되는 것 같다.

 

 

 

 

Comments