1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- application:
- name: 안동시 VMS 통신 서버
- listen-port: 3001
- ftp-home-dir: C:\DRIVE_E\ANDONG_VMS_FTP
- load-db: true
- check-new-form: false
- communication:
- listen-port: 30200
- dump-recv: true
- dump-send: true
- subscription-status: true
- subscription-status-cycle: 30
- esb-server: 192.168.20.99
- esb-port: 9904
- server:
- port: 8904
- spring:
- profiles:
- active: dev
- ---
- 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: ENC(D/mtjX68HkE=)
- password: ENC(D/mtjX68HkE=)
- ---
- spring:
- config:
- activate:
- on-profile: prod
- datasource:
- hikari:
- driver-class-name: com.tmax.tibero.jdbc.TbDriver
- jdbc-url: jdbc:tibero:thin:@115.91.94.42:8629:tibero
- username: ENC(D/mtjX68HkE=)
- password: ENC(D/mtjX68HkE=)
|