1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- application:
- process:
- id: EXT01
- name: Weather(Open API) Communication Server
- history: true
- user:
- id: admin
- pswd: 1234
- atmp:
- enabled: true
- crontab: 30 0/15 * * * *
- api-key: 2y3qwo%2BwhlG6E%2BZfcyDKLMCr5Lp4gy%2BNgGuvWmgAdq7O%2Bf%2Fs4DPQz2ZD1rzDLowBq%2F6pfSi5F6UWlyM5meRiaw%3D%3D
- api-ver: 1.3
- start-hour: 0
- end-hour: 23
- frcs:
- enabled: true
- crontab: 10 0/15 * * * *
- api-key: 2y3qwo%2BwhlG6E%2BZfcyDKLMCr5Lp4gy%2BNgGuvWmgAdq7O%2Bf%2Fs4DPQz2ZD1rzDLowBq%2F6pfSi5F6UWlyM5meRiaw%3D%3D
- start-hour: 0
- end-hour: 23
- server:
- port: 9873
- shutdown: graceful
- error:
- whitelabel:
- enabled: true
- include-exception: false
- include-stacktrace: never
- servlet:
- session:
- timeout: 300
- spring:
- application:
- name: wthr-comm-server
- profiles:
- active: prod
- main:
- banner-mode: off
- mvc:
- view:
- prefix: /WEB-INF/jsp/
- suffix: .jsp
- ---
- 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: yiits
- password: yiits
- minimumIdle: 5
- maximumIdle: 10
- maximumPoolSize: 20
- idleTimeout: 30000
- connectTimeout: 10000
- ---
- spring:
- config:
- activate:
- on-profile: prod
- datasource:
- hikari:
- driver-class-name: com.tmax.tibero.jdbc.TbDriver
- #jdbc-url: jdbc:tibero:thin:@172.16.11.52:8800:new_yiitsdb
- jdbc-url: jdbc:tibero:thin:@(DESCRIPTION=(FAILOVER=ON)(LOAD_BALANCE=ON)(ADDRESS_LIST=(ADDRESS=(HOST=172.16.11.52)(PORT=8800))(ADDRESS=(HOST=172.16.11.62)(PORT=8800)))(DATABASE_NAME=new_yiitsdb))
- username: yiits
- password: yiits
- minimumIdle: 5
- maximumIdle: 10
- maximumPoolSize: 20
- idleTimeout: 30000
- connectTimeout: 10000
|