Files
PRG381/target/classes/application.properties
Zastian Pretorius a4b271e030 First commit
2022-08-28 02:31:02 +01:00

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