You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
647 B
YAML
21 lines
647 B
YAML
spring:
|
|
kafka:
|
|
bootstrap-servers: localhost:9093
|
|
consumer:
|
|
group-id: kafka-spring-app-group
|
|
security:
|
|
protocol: SSL
|
|
ssl:
|
|
trust-store-location: file:/workspaces/java-2/kafka.pfx
|
|
trust-store-password:
|
|
trust-store-type: pkcs12
|
|
key-store-location: file:/workspaces/java-2/kafka.pfx
|
|
key-store-password:
|
|
key-store-type: pkcs12
|
|
key-password:
|
|
properties:
|
|
"ssl-endpoint-identification-algorithm": ""
|
|
producer:
|
|
key-serializer: org.apache.kafka.common.serialization.StringSerializer
|
|
value-serializer: org.apache.kafka.common.serialization.StringSerializer
|