File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed
backend/src/main/resources Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,32 @@ spring:
1717 password : ${DEV_REDIS_PASSWORD}
1818 embedded : false
1919
20+ kafka :
21+ bootstrap-servers : localhost:9092
22+ producer :
23+ key-serializer : org.apache.kafka.common.serialization.StringSerializer
24+ value-serializer : org.springframework.kafka.support.serializer.JsonSerializer
25+ consumer :
26+ group-id : chat-processing-group # 컨슈머 그룹 ID
27+ key-deserializer : org.apache.kafka.common.serialization.StringDeserializer
28+ value-deserializer : org.springframework.kafka.support.serializer.JsonDeserializer
29+ properties :
30+ spring.json.trusted.packages : " *"
31+
2032 batch :
2133 job :
2234 enabled : false # 최소 한번 시작
2335 jdbc :
2436 initialize-schema : always
2537
38+ task :
39+ scheduling :
40+ shutdown :
41+ await-termination : true
42+ await-termination-period : 60s
43+ lifecycle :
44+ timeout-per-shutdown-phase : 60s
45+
2646 datasource-meta :
2747 driver-class-name : com.mysql.cj.jdbc.Driver
2848 jdbc-url : jdbc:mysql://localhost:3306/meta_db?useSSL=false&useUnicode=true&serverTimezone=Asia/Seoul&allowPublicKeyRetrieval=true&createDatabaseIfNotExist=true
You can’t perform that action at this time.
0 commit comments