Unable to connect mysql to spring boot project

后端 未结 6 2019
庸人自扰
庸人自扰 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:35

    Maybe you missing MySQL connector dependency so add it into dependencies tag on pom.xml file and run the project again. It may fix your problem.

        `
            mysql
            mysql-connector-java
            runtime
         `
    

提交回复
热议问题