First commit

This commit is contained in:
Zastian Pretorius
2022-08-28 02:31:02 +01:00
commit a4b271e030
34 changed files with 1421 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
## 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