Created
October 25, 2022 12:24
-
-
Save kirshiyin89/de0efbceb75dcec06ff86e91a303f9aa to your computer and use it in GitHub Desktop.
app properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
topic: my-topic | |
server: | |
port: 8090 | |
spring: | |
kafka: | |
bootstrap-servers: http://localhost:29092 | |
properties: | |
spring.deserializer.value.delegate.class: org.springframework.kafka.support.serializer.JsonDeserializer | |
security.protocol: PLAINTEXT | |
producer: | |
key-serializer: org.apache.kafka.common.serialization.StringSerializer | |
value-serializer: org.apache.kafka.common.serialization.StringSerializer | |
consumer: | |
group-id: my-group | |
key-deserializer: org.apache.kafka.common.serialization.StringDeserializer | |
value-deserializer: org.apache.kafka.common.serialization.StringDeserializer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment