| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- application:
- process:
- id: OPER00
- name: ITS Operating Server
- center-id: L08
- region-code: 228
- region-name: 용인시
- center-comm:
- process-id: OPER00
- vds-server:
- process-id: VDS01
- vms-server:
- process-id: VMS01
- job-schedule:
- cctv-preset: false
- server:
- port: 8999
- 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:
- timeout: 300
- # multipart:
- # enabled: true
- # file-size-threshold: 2KB
- # max-file-size: 200MB
- # max-request-size: 215MB
- profiles:
- active: dev
- main:
- banner-mode: off
- application:
- name: its-op-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: true
- hibernate:
- ddl-auto: none
- properties:
- hibernate:
- default_batch_fetch_size: 1000
- format_sql: true
- use_sql_columns: true
- 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: INFO
- org:
- springframework:
- #security: DEBUG
- jdbc:
- core:
- JdbcTemplate: DEBUG
- StatementCreatorUtils: TRACE
- hibernate:
- type:
- descriptor:
- sql:
- BasicBinder: TRACE
|