Spring boot 환경 build.gradle에서 아래와 같이 적어주었더니 오류.
// https://mvnrepository.com/artifact/mysql/mysql-connector-java
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.38'
-> runtimeOnly 'mysql:mysql-connector-java'으로 변경했더니 오류 해결
생각해보면, boot의 기능 중 하나가 auto configuration인데 간과하고 실수했다...
Spring boot 환경 build.gradle에서 아래와 같이 적어주었더니 오류.
// https://mvnrepository.com/artifact/mysql/mysql-connector-java
compile group: 'mysql', name: 'mysql-connector-java', version: '5.1.38'
-> runtimeOnly 'mysql:mysql-connector-java'으로 변경했더니 오류 해결
생각해보면, boot의 기능 중 하나가 auto configuration인데 간과하고 실수했다...