mirror of
https://github.com/mrfluffy-dev/PRG381.git
synced 2026-01-17 10:20:33 +00:00
16 lines
591 B
Properties
16 lines
591 B
Properties
## Spring DATASOURCE (DataSourceAutoConfiguration & DataSourceProperties)
|
|
spring.datasource.url = jdbc:mysql://localhost:3306/PRG381?useSSL=false
|
|
spring.datasource.username = mrfluffy
|
|
spring.datasource.password = 0814661902
|
|
|
|
## Hibernate Properties
|
|
# The SQL dialect makes Hibernate generate better SQL for the chosen database
|
|
spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5InnoDBDialect
|
|
|
|
# Hibernate ddl auto (create, create-drop, validate, update)
|
|
spring.jpa.hibernate.ddl-auto = update
|
|
|
|
logging.level.org.hibernate.SQL=DEBUG
|
|
logging.level.org.hibernate.type=TRACE
|
|
|