From 087641b2e3ba223e9df3c20bfeedbb3b0348761f Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Mon, 6 Jun 2022 11:43:26 +0200 Subject: [PATCH] Generated an empty project with spring initializr --- .gitignore | 33 ++++++++++++ pom.xml | 54 +++++++++++++++++++ .../juplo/kafka/KafkahandlerApplication.java | 13 +++++ src/main/resources/application.properties | 1 + .../kafka/KafkahandlerApplicationTests.java | 13 +++++ 5 files changed, 114 insertions(+) create mode 100644 .gitignore create mode 100644 pom.xml create mode 100644 src/main/java/de/juplo/kafka/KafkahandlerApplication.java create mode 100644 src/main/resources/application.properties create mode 100644 src/test/java/de/juplo/kafka/KafkahandlerApplicationTests.java diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..549e00a --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..5065249 --- /dev/null +++ b/pom.xml @@ -0,0 +1,54 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 2.7.0 + + + de.juplo.kafka + kafkahandler + 0.0.1-SNAPSHOT + Bug in Kafkahandler + Demonstration of a possible bug in the KafkaHandler-Annotation + + 17 + + + + org.springframework.boot + spring-boot-starter + + + org.springframework.kafka + spring-kafka + + + org.projectlombok + lombok + + + + org.springframework.boot + spring-boot-starter-test + test + + + org.springframework.kafka + spring-kafka-test + test + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + diff --git a/src/main/java/de/juplo/kafka/KafkahandlerApplication.java b/src/main/java/de/juplo/kafka/KafkahandlerApplication.java new file mode 100644 index 0000000..6aed619 --- /dev/null +++ b/src/main/java/de/juplo/kafka/KafkahandlerApplication.java @@ -0,0 +1,13 @@ +package de.juplo.kafka; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class KafkahandlerApplication +{ + public static void main(String[] args) + { + SpringApplication.run(KafkahandlerApplication.class, args); + } +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1 @@ + diff --git a/src/test/java/de/juplo/kafka/KafkahandlerApplicationTests.java b/src/test/java/de/juplo/kafka/KafkahandlerApplicationTests.java new file mode 100644 index 0000000..db50a55 --- /dev/null +++ b/src/test/java/de/juplo/kafka/KafkahandlerApplicationTests.java @@ -0,0 +1,13 @@ +package de.juplo.kafka; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class KafkahandlerApplicationTests +{ + @Test + void contextLoads() + { + } +} -- 2.20.1