application.yml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. application:
  2. process:
  3. id: OPER00
  4. name: ITS Operating Server
  5. center-id: L08
  6. region-code: 228
  7. region-name: 평택시
  8. processing:
  9. #Audo incident detect
  10. incident-enabled: true
  11. incident-min-speed: 30
  12. incident-average-gap: 30
  13. incident-pattern-gap: 30
  14. #dsrc
  15. dsrc-enabled: false
  16. dsrc-min-vol: 3
  17. #patten update
  18. pattern-update-factor: 0.2
  19. #repeat congest
  20. repeat-congest-enabled: true
  21. repeat-congest-period-weeks: 6
  22. repeat-congest-counts: 3
  23. repeat-congest-continuous-minutes: 10
  24. #gits external link
  25. relat-org-id: 000000
  26. org-code: 44146000
  27. server:
  28. port: 7998
  29. shutdown: graceful
  30. error:
  31. whitelabel:
  32. enabled: true
  33. include-exception: false
  34. include-stacktrace: never
  35. resources:
  36. static-locations: file:src/main/resources/static/
  37. spring:
  38. output:
  39. ansi:
  40. enabled: always
  41. servlet:
  42. context-path: /
  43. session:
  44. tracking-mode: cookie
  45. timeout: 600
  46. # multipart:
  47. # enabled: true
  48. # file-size-threshold: 2KB
  49. # max-file-size: 200MB
  50. # max-request-size: 215MB
  51. profiles:
  52. active: dev
  53. main:
  54. banner-mode: off
  55. application:
  56. name: traf-prcs-server
  57. jackson:
  58. property-naming-strategy: LOWER_CASE
  59. datasource:
  60. hikari:
  61. auto-commit: true
  62. connection-test-query: SELECT 1 FROM DUAL
  63. minimum-idle: 10
  64. #maximum-pool-size: 50
  65. pool-name: pool-its-op-server
  66. jpa:
  67. #database: Oracle
  68. open-in-view: false
  69. show-sql: false
  70. hibernate:
  71. ddl-auto: none
  72. properties:
  73. hibernate:
  74. default_batch_fetch_size: 1000
  75. format_sql: false
  76. use_sql_columns: false
  77. hbm2ddl.auto: validate
  78. implicit_naming_strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
  79. physical_naming_strategy: org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
  80. output:
  81. ansi:
  82. enabled: always
  83. logging:
  84. level:
  85. org.hibernate.SQL: ERROR
  86. org:
  87. springframework:
  88. #security: DEBUG
  89. jdbc:
  90. core:
  91. JdbcTemplate: ERROR
  92. StatementCreatorUtils: ERROR
  93. hibernate:
  94. type:
  95. descriptor:
  96. sql:
  97. BasicBinder: ERROR