kafka console initial commit

This commit is contained in:
许晓东
2021-08-30 20:24:24 +08:00
commit 5b36126ea4
30 changed files with 1727 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package com.xuxd.kafka.console;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class KafkaConsoleUiApplication {
public static void main(String[] args) {
SpringApplication.run(KafkaConsoleUiApplication.class, args);
}
}