crss-reg.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. spring:
  2. jpa:
  3. database: ORACLE
  4. show-sql: false
  5. properties:
  6. jadira.usertype.autoRegisterUserTypes: true
  7. hibernate:
  8. dialect: org.hibernate.dialect.Oracle10gDialect
  9. integration.envers.enabled: true
  10. http:
  11. multipart:
  12. maxFileSize: "25Mb"
  13. maxRequestSize: "25Mb"
  14. resources:
  15. chain:
  16. gzipped: true
  17. app:
  18. docmgt:
  19. root-folder: /crss/docmgt
  20. security:
  21. oauth2:
  22. client:
  23. accessTokenUri: http://app:8080/admin/oauth/access_token
  24. userAuthorizationUri: http://app:8080/admin/oauth/authorize
  25. clientId: crss
  26. clientSecret: crsssecret
  27. authorized-grant-types: authorization_code,refresh_token,password
  28. scope: openid
  29. access-token-validity-seconds: 3600
  30. resource:
  31. userInfoUri: http://app:8080/admin/user
  32. eureka:
  33. client:
  34. serviceUrl:
  35. defaultZone: http://discovery:8080/eureka/
  36. # healthcheck:
  37. # enabled: true
  38. feign:
  39. hystrix:
  40. enabled: false
  41. logging:
  42. level:
  43. com.netflix: INFO
  44. org.springframework.cloud: INFO
  45. org.springframework.security: INFO
  46. server:
  47. undertow:
  48. accesslog:
  49. dir: target
  50. enabled: true
  51. pattern: combined
  52. compression:
  53. enabled: true
  54. min-response-size: 1
  55. jackson:
  56. # for further customization please consult the documentation:
  57. # http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#howto-customize-the-jackson-objectmapper
  58. # https://github.com/FasterXML/jackson-databind/wiki
  59. # deserialization:
  60. # FAIL_ON_UNKNOWN_PROPERTIES: true
  61. # DEFAULT_VIEW_INCLUSION: true
  62. serialization:
  63. write_dates_as_timestamps: false