application.yml.backup 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. application:
  2. process:
  3. id: EXT01
  4. name: Weather(Open API) Communication Server
  5. history: true
  6. user:
  7. id: admin
  8. pswd: 1234
  9. atmp:
  10. enabled: true
  11. crontab: 30 0/15 * * * *
  12. api-key: 2y3qwo%2BwhlG6E%2BZfcyDKLMCr5Lp4gy%2BNgGuvWmgAdq7O%2Bf%2Fs4DPQz2ZD1rzDLowBq%2F6pfSi5F6UWlyM5meRiaw%3D%3D
  13. api-ver: 1.3
  14. start-hour: 0
  15. end-hour: 23
  16. frcs:
  17. enabled: true
  18. crontab: 10 0/15 * * * *
  19. api-key: 2y3qwo%2BwhlG6E%2BZfcyDKLMCr5Lp4gy%2BNgGuvWmgAdq7O%2Bf%2Fs4DPQz2ZD1rzDLowBq%2F6pfSi5F6UWlyM5meRiaw%3D%3D
  20. start-hour: 0
  21. end-hour: 23
  22. server:
  23. port: 9873
  24. shutdown: graceful
  25. error:
  26. whitelabel:
  27. enabled: true
  28. include-exception: false
  29. include-stacktrace: never
  30. servlet:
  31. session:
  32. timeout: 300
  33. spring:
  34. application:
  35. name: wthr-comm-server
  36. profiles:
  37. active: prod
  38. main:
  39. banner-mode: off
  40. mvc:
  41. view:
  42. prefix: /WEB-INF/jsp/
  43. suffix: .jsp
  44. ---
  45. spring:
  46. config:
  47. activate:
  48. on-profile: dev
  49. datasource:
  50. hikari:
  51. driver-class-name: com.tmax.tibero.jdbc.TbDriver
  52. jdbc-url: jdbc:tibero:thin:@115.91.94.42:8629:tibero
  53. username: yiits
  54. password: yiits
  55. minimumIdle: 5
  56. maximumIdle: 10
  57. maximumPoolSize: 20
  58. idleTimeout: 30000
  59. connectTimeout: 10000
  60. ---
  61. spring:
  62. config:
  63. activate:
  64. on-profile: prod
  65. datasource:
  66. hikari:
  67. driver-class-name: com.tmax.tibero.jdbc.TbDriver
  68. #jdbc-url: jdbc:tibero:thin:@172.16.11.52:8800:new_yiitsdb
  69. 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))
  70. username: yiits
  71. password: yiits
  72. minimumIdle: 5
  73. maximumIdle: 10
  74. maximumPoolSize: 20
  75. idleTimeout: 30000
  76. connectTimeout: 10000