wthr-comm-server.properties 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. #[logging]
  2. logging.config=conf//wthr-comm-server-logback.xml
  3. #[Application properties]
  4. process.id=EXT03
  5. process.name=Weather External Communication Server
  6. #[server config]
  7. #[server <---> operator]
  8. server.center.bind.port=6010
  9. server.center.dump=false
  10. #[ATMP]
  11. atmp.crontab = 0 15 * * * *
  12. atmp.apikey = 2y3qwo%2BwhlG6E%2BZfcyDKLMCr5Lp4gy%2BNgGuvWmgAdq7O%2Bf%2Fs4DPQz2ZD1rzDLowBq%2F6pfSi5F6UWlyM5meRiaw%3D%3D
  13. atmp.apiver = 1.3
  14. atmp.strhour = 0
  15. atmp.endhour = 23
  16. #[FRCS]
  17. frcs.crontab = 0 10 * * * *
  18. #[Database properties]
  19. #spring.datasource.hikari.driver-class-name=com.tmax.tibero.jdbc.TbDriver
  20. #spring.datasource.hikari.jdbc-url=jdbc:tibero:thin:@192.168.20.29:8629:tibero
  21. #spring.datasource.hikari.username=gmutis
  22. #spring.datasource.hikari.password=gmutis
  23. #spring.datasource.hikari.driver-class-name=oracle.jdbc.OracleDriver
  24. spring.datasource.hikari.driver-class-name=net.sf.log4jdbc.sql.jdbcapi.DriverSpy
  25. #spring.datasource.hikari.jdbc-url=jdbc:oracle:thin:@127.0.0.1:1521:HANTE
  26. spring.datasource.hikari.jdbc-url=jdbc:log4jdbc:oracle:thin:@127.0.0.1:1521:HANTE
  27. spring.datasource.hikari.username=gmutis
  28. spring.datasource.hikari.password=gmutis
  29. spring.datasource.hikari.jpool-name=hikari-cp
  30. spring.datasource.hikari.jmaximum-pool-size=30
  31. spring.datasource.hikari.jminimum-idle=2
  32. # FOR WEB UI: START
  33. server.shutdown=graceful
  34. server.port=9873
  35. server.error.whitelabel.enabled=true
  36. server.error.include-exception=false
  37. server.error.include-stacktrace=never
  38. spring.mvc.view.prefix=/WEB-INF/jsp/
  39. spring.mvc.view.suffix=.jsp
  40. server.servlet.session.timeout=300
  41. # FOR WEB UI: END