Unable to connect mysql to spring boot project

后端 未结 6 2021
庸人自扰
庸人自扰 2020-12-31 10:08

i am following this https://spring.io/guides/gs/accessing-data-mysql/ guide to connect mysql db to spring boot project

but getting following error when running the a

6条回答
  •  傲寒
    傲寒 (楼主)
    2020-12-31 10:11

    com.zaxxer.hikari.HikariDataSource requires spring-boot-starter-data-jdbc dependency, so add it to your pom.xml:

    
          org.springframework.boot
          spring-boot-starter-data-jdbc
    
    

提交回复
热议问题