ui package config

This commit is contained in:
许晓东
2021-08-31 10:56:56 +08:00
parent 57c26c8688
commit 859e2cfed3
4 changed files with 146 additions and 100 deletions

View File

@@ -1,19 +0,0 @@
package com.xuxd.kafka.console.controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* kafka-console-ui.
*
* @author xuxd
* @date 2021-08-28 10:54:58
**/
@RestController
public class IndexController {
@RequestMapping("/")
public String index() {
return "hello world";
}
}