Last active
August 14, 2020 22:37
-
-
Save jsegomez/cc0d89b803d76dbb742ed00e316b0f96 to your computer and use it in GitHub Desktop.
Configuración de MySQL Spring
This file contains 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
#Configuración de base de datos MySQL para Spring boot | |
spring.datasource.url=jdbc:mysql://localhost:3306/microservicios_productos?serverTimezone=America/El_Salvador&useSSL=false | |
spring.datasource.username=jsegomez | |
spring.datasource.password=Gnome$9900 | |
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver | |
spring.jpa.database-platform=org.hibernate.dialect.MySQL8Dialect | |
spring.jpa.hibernate.ddl-auto=create-drop | |
logging.level.org.hibernate.SQL=debug |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment