| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- application:
- process:
- id: OPER00
- name: ITS Operating Server
- center-id: L08
- region-code: 228
- region-name: 평택시
- processing:
- #Audo incident detect
- incident-enabled: true
- incident-min-speed: 30
- incident-average-gap: 30
- incident-pattern-gap: 30
- #dsrc
- dsrc-enabled: false
- dsrc-min-vol: 3
- #patten update
- pattern-update-factor: 0.2
- #repeat congest
- repeat-congest-enabled: true
- repeat-congest-period-weeks: 6
- repeat-congest-counts: 3
- repeat-congest-continuous-minutes: 10
- #gits external link
- relat-org-id: 000000
- org-code: 44146000
- server:
- port: 7998
- shutdown: graceful
- error:
- whitelabel:
- enabled: true
- include-exception: false
- include-stacktrace: never
- resources:
- static-locations: file:src/main/resources/static/
- spring:
- output:
- ansi:
- enabled: always
- servlet:
- context-path: /
- session:
- tracking-mode: cookie
- timeout: 600
- # multipart:
- # enabled: true
- # file-size-threshold: 2KB
- # max-file-size: 200MB
- # max-request-size: 215MB
- profiles:
- active: dev
- main:
- banner-mode: off
- application:
- name: traf-prcs-server
- jackson:
- property-naming-strategy: LOWER_CASE
- datasource:
- hikari:
- auto-commit: true
- connection-test-query: SELECT 1 FROM DUAL
- minimum-idle: 10
- #maximum-pool-size: 50
- pool-name: pool-its-op-server
- jpa:
- #database: Oracle
- open-in-view: false
- show-sql: false
- hibernate:
- ddl-auto: none
- properties:
- hibernate:
- default_batch_fetch_size: 1000
- format_sql: false
- use_sql_columns: false
- hbm2ddl.auto: validate
- implicit_naming_strategy: org.springframework.boot.orm.jpa.hibernate.SpringImplicitNamingStrategy
- physical_naming_strategy: org.springframework.boot.orm.jpa.hibernate.SpringPhysicalNamingStrategy
- output:
- ansi:
- enabled: always
- logging:
- level:
- org.hibernate.SQL: ERROR
- org:
- springframework:
- #security: DEBUG
- jdbc:
- core:
- JdbcTemplate: ERROR
- StatementCreatorUtils: ERROR
- hibernate:
- type:
- descriptor:
- sql:
- BasicBinder: ERROR
|