Skip to content

Instantly share code, notes, and snippets.

@jsegomez
Last active August 14, 2020 22:37
Show Gist options
  • Save jsegomez/cc0d89b803d76dbb742ed00e316b0f96 to your computer and use it in GitHub Desktop.
Save jsegomez/cc0d89b803d76dbb742ed00e316b0f96 to your computer and use it in GitHub Desktop.
Configuración de MySQL Spring
#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