Skip to main content
Submitted by manoj on 29 August 2023

this error as expected if you add mydql driver as a dependency butyou did not configure your database so 

 

 

just open file 'application.properties'   and add  below lines of code.

 

spring.datasource.url=jdbc:mysql://localhost:3306/ecommerce

spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

spring.datasource.username=root

spring.datasource.password=root

spring.jpa.hibernate.ddl-auto=update

spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect