bad java doing bad things

This commit is contained in:
2025-05-05 12:27:20 +00:00
commit 88aee3ff5c
31 changed files with 1032 additions and 0 deletions

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
com.example.kafkaapp.KafkaApp

View File

@@ -0,0 +1,20 @@
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

View File

@@ -0,0 +1,12 @@
Manifest-Version: 1.0
Main-Class: org.springframework.boot.loader.JarLauncher
Start-Class: com.example.kafkaapp.KafkaApp
Spring-Boot-Version: 3.0.4
Spring-Boot-Classes: BOOT-INF/classes/
Spring-Boot-Lib: BOOT-INF/lib/
Spring-Boot-Classpath-Index: BOOT-INF/classpath.idx
Spring-Boot-Layers-Index: BOOT-INF/layers.idx
Build-Jdk-Spec: 21
Implementation-Title: java-2
Implementation-Version: 0.0.1-SNAPSHOT

Binary file not shown.

View File

@@ -0,0 +1,2 @@
Manifest-Version: 1.0