Created
August 27, 2021 12:54
-
-
Save pablohdzvizcarra/c4afc57b2aa082fb1f86056e7051e7bf to your computer and use it in GitHub Desktop.
config file to mysql for spring boot app
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
spring.datasource.url=jdbc:mysql://localhost:3306/jwt_app | |
spring.datasource.username=root | |
spring.datasource.password=my-secret-pw | |
spring.jpa.hibernate.ddl-auto=create | |
spring.jpa.show-sql=true | |
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL8Dialect | |
spring.jpa.properties.hibernate.format_sql=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment