| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- spring:
- jpa:
- database: ORACLE
- show-sql: false
- properties:
- jadira.usertype.autoRegisterUserTypes: true
- hibernate:
- dialect: org.hibernate.dialect.Oracle10gDialect
- integration.envers.enabled: true
- http:
- multipart:
- maxFileSize: "25Mb"
- maxRequestSize: "25Mb"
- resources:
- chain:
- gzipped: true
- app:
- docmgt:
- root-folder: /crss/docmgt
- eureka:
- client:
- serviceUrl:
- defaultZone: http://discovery:8080/eureka/
- # healthcheck:
- # enabled: true
- feign:
- hystrix:
- enabled: false
- logging:
- level:
- com.netflix: INFO
- org.springframework.cloud: INFO
- org.springframework.security: INFO
- server:
- undertow:
- accesslog:
- dir: target
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- jackson:
- # for further customization please consult the documentation:
- # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
- # https://github.com/FasterXML/jackson-databind/wiki
- # deserialization:
- # FAIL_ON_UNKNOWN_PROPERTIES: true
- # DEFAULT_VIEW_INCLUSION: true
- serialization:
- write_dates_as_timestamps: false
|