what is the application property setting to connect mysql in spring boot

what is the application property setting to connect mysql in spring boot

I also want to generate the table automatically

I’m receiving this error in Spring Boot -Application properties I created Spring Boot starter project-Maven and opened application properties it shows Failed to create parts control please help how to solve this error

  • Please provide enough code so others can better understand or reproduce the problem.

    – 
    Bot

spring.datasource.url=jdbc:mysql://localhost:3306/school
spring.datasource.username=root
spring.datasource.password=password
spring.jpa.show-sql=true
spring.jpa.generate-ddl=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect

Leave a Comment