application.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. spring:
  2. main:
  3. # WEB 인터페이스 사용안할 경우 아래주석 해제(개별 프로세스로 적용시 프로파일에 설정할수 있음)
  4. #web-application-type: none
  5. datasource:
  6. hikari:
  7. # SQL문이 표준과 다른경우 또는 데이터베이스에 따라 아래 주석을 해제하고 해당파일에 SQL 작성
  8. #mapper-locations: file:${user.dir}/conf/sql/application-mapper.xml
  9. # Oracle
  10. driver-class-name: oracle.jdbc.OracleDriver
  11. jdbc-url: jdbc:oracle:thin:@115.91.94.42:1521:HANTE
  12. # Tibero
  13. #driver-class-name: com.tmax.tibero.jdbc.TbDriver
  14. #jdbc-url: jdbc:tibero:thin:@192.168.10.11:8629:tibero
  15. # MariaDB
  16. #connection-test-query: SELECT 1
  17. #driver-class-name: org.mariadb.jdbc.Driver
  18. #jdbc-url: jdbc:mariadb://192.168.10.11:3306/utis_db?characterEncoding=UTF-8&serverTimezone=Asia/Seoul
  19. # MySQL
  20. #connection-test-query: SELECT 1
  21. #driver-class-name: com.mysql.cj.jdbc.Driver
  22. #jdbc-url: jdbc:mysql://192.168.10.11:3306/utis_db?characterEncoding=UTF-8&serverTimezone=Asia/Seoul
  23. username: rota
  24. password: rota
  25. application:
  26. rota-local-server:
  27. scheduling:
  28. use-delete-snd-log: true
  29. delete-snd-log: 17 4 * * * *
  30. rota-local-client:
  31. use-link-local: false
  32. scheduling:
  33. use-delete-traffic-center: true
  34. delete-traffic-center: 0 0/5 * * * *
  35. use-delete-rcv-log: true
  36. delete-rcv-log: 0 4 * * * *
  37. moct-local-client:
  38. use-link-local: false
  39. scheduling:
  40. use-delete-traffic-moct: true
  41. delete-traffic-moct: 0 0/5 * * * *
  42. use-delete-rcv-log-moct: true
  43. delete-rcv-log-moct: 0 4 * * * *
  44. ---
  45. spring:
  46. config:
  47. activate:
  48. on-profile: rota-local-server
  49. server:
  50. port: 8871
  51. logging:
  52. path: ${user.dir}/logs/rota-local-server/
  53. ---
  54. spring:
  55. config:
  56. activate:
  57. on-profile: rota-local-client
  58. server:
  59. port: 8872
  60. logging:
  61. path: ${user.dir}/logs/rota-local-client/
  62. ---
  63. spring:
  64. config:
  65. activate:
  66. on-profile: moct-local-client
  67. server:
  68. port: 8873
  69. logging:
  70. path: ${user.dir}/logs/moct-local-client/