[SpringBoot / MySQL] Spring Boot MySQL 연동오류 / java.lang.ClassNotFoundException: com.mysql.cj.jdbc.Driver트러블슈팅2023. 5. 15. 06:48
Table of Contents
728x90
728x90
에러 메세지
java.lang.ClassNotFoundException: com.mysql.cj.jdbc.Driver
원인
gradle에 주입해 준 mysql connector-java가 제대로 돌아가지 않음.
해결
구글 서핑 결과는 전부 connector-java jar파일을 프로젝트 내부에 빌드하는 것이었지만.
위의 두 문서들을 보면, 네이밍이 connector-java에서 mysql-connector-j로 변경된 것을 볼 수 있다.
위의 문서들을 바탕으로 아래와 같이 gradle을 수정해주었다.
//build.gradle
(...생략...)
dependencies{
(...생략...)
//db
implementation group: 'com.mysql', name: 'mysql-connector-j', version: '8.0.33'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
(...생략...)
}
(...생략...)
전
후
728x90
300x250
@mag1c :: 꾸준히 재밌게
2023.04 ~ 백엔드 개발자의 기록
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!