27 lines
639 B
YAML
27 lines
639 B
YAML
spring:
|
|
mvc:
|
|
throw-exception-if-no-handler-found: true
|
|
jackson:
|
|
deserialization:
|
|
FAIL_ON_UNKNOWN_PROPERTIES: true
|
|
property-naming-strategy: SNAKE_CASE
|
|
jpa:
|
|
open-in-view: false
|
|
generate-ddl: true
|
|
show-sql: true
|
|
hibernate:
|
|
ddl-auto: update
|
|
properties:
|
|
hibernate:
|
|
dialect: org.hibernate.dialect.H2Dialect
|
|
thread-executor: standard
|
|
docker:
|
|
compose:
|
|
enabled: false
|
|
autoconfigure:
|
|
exclude: org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration
|
|
|
|
cors:
|
|
allow:
|
|
origins: ${CORS_ALLOWED_ORIGINS:*}
|
|
credentials: ${CORS_ALLOW_CREDENTIALS:false} |