1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- spring:
- main:
- # WEB 인터페이스 사용안할 경우 아래주석 해제(개별 프로세스로 적용시 프로파일에 설정할수 있음)
- #web-application-type: none
- datasource:
- hikari:
- # SQL문이 표준과 다른경우 또는 데이터베이스에 따라 아래 주석을 해제하고 해당파일에 SQL 작성
- #mapper-locations: file:${user.dir}/conf/sql/application-mapper.xml
- # Oracle
- driver-class-name: oracle.jdbc.OracleDriver
- jdbc-url: jdbc:oracle:thin:@115.91.94.42:1521:HANTE
- # Tibero
- #driver-class-name: com.tmax.tibero.jdbc.TbDriver
- #jdbc-url: jdbc:tibero:thin:@192.168.10.11:8629:tibero
- # MariaDB
- #connection-test-query: SELECT 1
- #driver-class-name: org.mariadb.jdbc.Driver
- #jdbc-url: jdbc:mariadb://192.168.10.11:3306/utis_db?characterEncoding=UTF-8&serverTimezone=Asia/Seoul
- # MySQL
- #connection-test-query: SELECT 1
- #driver-class-name: com.mysql.cj.jdbc.Driver
- #jdbc-url: jdbc:mysql://192.168.10.11:3306/utis_db?characterEncoding=UTF-8&serverTimezone=Asia/Seoul
- username: rota
- password: rota
- application:
- rota-local-server:
- scheduling:
- use-delete-snd-log: true
- delete-snd-log: 17 4 * * * *
- rota-local-client:
- use-link-local: false
- scheduling:
- use-delete-traffic-center: true
- delete-traffic-center: 0 0/5 * * * *
- use-delete-rcv-log: true
- delete-rcv-log: 0 4 * * * *
- moct-local-client:
- use-link-local: false
- scheduling:
- use-delete-traffic-moct: true
- delete-traffic-moct: 0 0/5 * * * *
- use-delete-rcv-log-moct: true
- delete-rcv-log-moct: 0 4 * * * *
- ---
- spring:
- config:
- activate:
- on-profile: rota-local-server
- server:
- port: 8871
- logging:
- path: ${user.dir}/logs/rota-local-server/
- ---
- spring:
- config:
- activate:
- on-profile: rota-local-client
- server:
- port: 8872
- logging:
- path: ${user.dir}/logs/rota-local-client/
- ---
- spring:
- config:
- activate:
- on-profile: moct-local-client
- server:
- port: 8873
- logging:
- path: ${user.dir}/logs/moct-local-client/
|