[troubleShooting, Spring] package org.springframework.jdbc.datasource does not exist
Project/(공통)troubleshooting2023. 5. 28. 14:45[troubleShooting, Spring] package org.springframework.jdbc.datasource does not exist

package org.springframework.jdbc.datasource does not exist 💡 프로젝트 생성시 JDBC dependency를 implementation 하지 않았기 때문에 발생한 이슈 에러 코드 java : package org.springframework.jdbc.datasource does not exist 핵심 요점 JDBC dependency를 gradle.build에 추가해준다. 해결 방안 JDBC dependency를 gradle.build에 추가해준다. implementation 'org.springframework.boot:spring-boot-starter-jdbc'

image