mysql 4

window 10에 mysql 설치하기

https://dev.mysql.com/downloads/ 접속 후 (url 변경 시 https://www.mysql.com/ 에 접속) MySQL Installer for Windows 다운로드 (mysql-installer-community-8.0.28.0.msi) 다운로드 후에 Mysql Server, Mysql Workbench 설치 [참고] 기존에 msql server 5.x 대가 설치 되어 있으면 자동으로 5.x대의 마지막 버전으로 업데이터 됨. 기존에 msql workbench가 설치 되어 있었는데 자동으로 마지막 버전으로 업데이터 됨.

mysql 2022.02.19

com.mysql.cj.jdbc.Driver

spring boot 설정 파일에 아래와 같이 추가하였더니 warn 문구가 아래와 같이 로그에 출력되었다. 해결 방법은 'com.mysql.cj.jdbc.Driver'로 변경하면 사라진다. 원인은 아래의 url에서 기술되어 있다. spring.datasource.driver-class-name=com.mysql.jdbc.Driver Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is general..

mysql 2019.01.13