application.yml.dev 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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: dev
  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. import: file:.\conf\application.properties
  50. datasource:
  51. hikari:
  52. driver-class-name: com.tmax.tibero.jdbc.TbDriver
  53. jdbc-url: jdbc:tibero:thin:@115.91.94.42:8629:tibero
  54. username: yiits
  55. password: yiits
  56. minimumIdle: 5
  57. maximumIdle: 10
  58. maximumPoolSize: 20
  59. idleTimeout: 30000
  60. connectTimeout: 10000
  61. ---
  62. spring:
  63. config:
  64. activate:
  65. on-profile: prod
  66. import: file:.\conf\application.properties
  67. datasource:
  68. hikari:
  69. driver-class-name: com.tmax.tibero.jdbc.TbDriver
  70. #jdbc-url: jdbc:tibero:thin:@172.16.11.52:8800:new_yiitsdb
  71. 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))
  72. username: yiits
  73. password: yiits
  74. minimumIdle: 5
  75. maximumIdle: 10
  76. maximumPoolSize: 20
  77. idleTimeout: 30000
  78. connectTimeout: 10000