1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- application:
- id: VMS01
- name: VMS Communication Server
- history: true
- user-id: admin
- user-pswd: 1234
- listen-port: 3001
- ftp-home-dir: C:\DRIVE_E\ANDONG_VMS_FTP
- load-db: true
- request-device-id: false
- max-download-forms: 10
- cngst-cont-count: 2
- max-cngst-forms: 5
- bottom-traffic-max: 3
- bottom-traffic-cycle: 3
- figure-traffic-center: true
- text-traffic-center: true
- figure-traf-grad1: 원활
- figure-traf-grad2: 지체
- figure-traf-grad3: 정체
- text-traf-grad1: 소통원활
- text-traf-grad2: 지 체
- text-traf-grad3: 정 체
- image-seq-save: false
- font-size-ratio: 1.35
- check-new-form: true
- communication:
- listen-port: 30200
- dump-recv: true
- dump-send: true
- subscription-status: true
- subscription-status-cycle: 30
- server:
- port: 8904
- shutdown: graceful
- error:
- whitelabel:
- enabled: true
- include-exception: false
- include-stacktrace: never
- servlet:
- session:
- timeout: 300
- spring:
- application:
- name: vms-comm-server
- profiles:
- active: dev
- main:
- #web-application-type: none
- log-startup-info: true
- banner-mode: off
- mvc:
- view:
- prefix: /WEB-INF/jsp/
- suffix: .jsp
- datasource:
- hikari:
- auto-commit: true
- connection-test-query: SELECT 1 FROM DUAL
- minimumIdle: 5
- maximumIdle: 10
- #maximumPoolSize: 20
- idleTimeout: 30000
- connectTimeout: 10000
- pool-name: pool-vms-comm-server
- ---
- spring:
- config:
- activate:
- on-profile: dev
- datasource:
- hikari:
- driver-class-name: com.tmax.tibero.jdbc.TbDriver
- jdbc-url: jdbc:tibero:thin:@115.91.94.42:8629:tibero
- username: gmutis
- password: gmutis
- ---
- spring:
- config:
- activate:
- on-profile: prod
- datasource:
- hikari:
- driver-class-name: oracle.jdbc.OracleDriver
- #jdbc-url: jdbc:oracle:thin:@172.19.10.26:1521:ptatms
- jdbc-url: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=172.19.10.25)(PORT=1521))(ADDRESS=(PROTOCOL=TCP)(HOST=172.19.10.26)(PORT=1521))(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=ptatms)))
- username: ptatms
- password: ptatms
|