All checks were successful
Java CI with Maven / build (push) Successful in 46s
Co-authored-by: Sebastian Böckelmann <uqpko@student.kit.edu> Reviewed-on: Sebastian/TimeManager#46
44 lines
1.4 KiB
Properties
44 lines
1.4 KiB
Properties
spring.datasource.url=jdbc:mariadb://127.0.0.1:3306/timemanager?createDatabaseIfNotExist=true&autoReconnect=true
|
|
spring.datasource.username=root
|
|
spring.datasource.password=edkvcjReDxJ9Z8hq
|
|
spring.datasource.driver-class-name=org.mariadb.jdbc.Driver
|
|
|
|
|
|
#Hibernate Configuration
|
|
# Show or not log for each sql query
|
|
spring.jpa.show-sql=true
|
|
|
|
# Hibernate ddl auto (create, create-drop, update): with "update" the database
|
|
# schema will be automatically updated accordingly to java entities found in
|
|
# the project
|
|
spring.jpa.hibernate.ddl-auto=update
|
|
|
|
|
|
# Allows Hibernate to generate SQL optimized for a particular DBMS
|
|
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MariaDB103Dialect
|
|
|
|
|
|
# naming strategy
|
|
# Naming strategy
|
|
spring.jpa.hibernate.naming.implicit-strategy=org.hibernate.boot.model.naming.ImplicitNamingStrategyLegacyHbmImpl
|
|
spring.jpa.hibernate.naming.physical-strategy=org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
|
|
spring.jpa.open-in-view=false
|
|
|
|
|
|
|
|
|
|
# Spring Data Rest Setup
|
|
spring.data.rest.base-path=/api
|
|
|
|
# Spring Server setup
|
|
server.address=127.0.0.1
|
|
server.port=8080
|
|
server.compression.enabled=true
|
|
server.http2.enabled=true
|
|
|
|
spring.servlet.multipart.max-file-size=4196KB
|
|
spring.servlet.multipart.max-request-size=4196KB
|
|
|
|
demo.webapp.jwtSecret=demoWebappSecretKey
|
|
demo.webapp.jwtExpirationMS=86400000
|
|
spring.jackson.time-zone=UTC |