Answers for "Configure MySQL Using Spring Boot Properties"

0

Configure MySQL Using Spring Boot Properties

spring.datasource.url=jdbc:mysql://localhost:3306/javadevjournal
spring.datasource.username=javadevjournal
spring.datasource.password=ThePassword
spring.jpa.hibernate.ddl-auto=update

## Hibernate Properties
# The SQL dialect makes Hibernate generate better SQL for the chosen database
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect
Posted by: Guest on January-07-2022

Code answers related to "Configure MySQL Using Spring Boot Properties"

Browse Popular Code Answers by Language