教你如何下載Jdbc開發包 jar

竹溪的竹子發表於2018-09-05

 點開官網:https://www.mysql.com/

點選導航 DOWNLOADS,如下圖示

找到底部社群版本,如下圖示

點開連結

找到MySQL Connectors,如下圖示

點選 DOWNLOAD,如下圖示

找到Connector/J,如下圖示

再點選連結MySQL Connector/J Installation Instructions,如下圖示

找到 Maven repository.點開,如下圖示:

找到了

或者 點選Installing from the Development Source Tree也行,裡面就有了

最快捷的方式下載就是用maven

<dependency>
  <groupId>mysql</groupId>
  <artifactId>mysql-connector-java</artifactId>
  <version>8.0.12</version>
</dependency>

 

相關文章