EyeANA_StandStatus/src/main/resources/application.yml

86 lines
1.8 KiB
YAML
Raw Normal View History

2024-02-11 13:19:23 +00:00
spring:
profiles:
active: default
group:
2024-04-27 08:09:57 +00:00
default: winTest
2024-02-11 13:19:23 +00:00
---
spring:
config:
activate:
on-profile: default
server:
port: 18083
state:
# 공통코드 CT001의 코드 6자리
id: IC0302 # 주기장 상태 분석
# 1:Primary, 2:Secondary
type: Primary
database:
db1:
datasource:
driver-class-name: com.tmax.tibero.jdbc.TbDriver
jdbcUrl: jdbc:tibero:thin:@10.200.31.4:8629:sacp
username: ucm
password: ucm
db2:
datasource:
driver-class-name: com.tmax.tibero.jdbc.TbDriver
jdbcUrl: jdbc:tibero:thin:@10.200.31.4:8629:sacp
username: uic
password: uic
kafka:
settings:
bootstrapAddress: 10.200.31.6:9091,10.200.31.8:9091,10.200.31.142:9091
consumer:
group-id: EyeANA_StandStatus
producer:
key-serializer: org.apache.kafka.common.serialization.StringSerializer
value-serializer: org.springframework.kafka.support.serializer.JsonSerializer
message:
topic:
recv:
video: ai.analyze.video
2024-07-14 03:36:14 +00:00
vccs: ai.analyze.voice_test
2024-02-11 13:19:23 +00:00
send:
2024-06-05 09:04:12 +00:00
sttus: ic.analyze.stand.status_test
alarm: ic.analyze.alarm_test
2024-04-27 08:09:57 +00:00
2024-02-11 13:19:23 +00:00
---
spring:
config:
activate:
2024-04-27 08:09:57 +00:00
on-profile: real
2024-02-11 13:19:23 +00:00
2024-04-27 08:09:57 +00:00
state:
# 공통코드 CT001의 코드 6자리
id: IC0302 # 주기장 상태 분석
# 1:Primary, 2:Secondary
type: Primary
2024-02-11 13:19:23 +00:00
2024-04-27 08:09:57 +00:00
# on-profile: real... END
---
spring:
config:
activate:
on-profile: winTest
state:
# 공통코드 CT001의 코드 6자리
id: TEST01 # 주기장 상태 분석
# 1:Primary, 2:Secondary
type: Primary
2024-02-11 13:19:23 +00:00
kafka:
message:
topic:
recv:
video: ai.analyze.video
send:
2024-04-27 08:09:57 +00:00
sttus: ic.analyze.stand.status_test
alarm: ic.analyze.alarm_test
# on-profile: winTest... END