欢迎信息

This commit is contained in:
阿沐 2022-10-27 14:01:44 +08:00
parent c782464258
commit b5539b634c
2 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,18 @@
package net.maku.system.controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 首页 欢迎信息
*
* @author 阿沐 babamu@126.com
*/
@RestController
public class IndexController {
@GetMapping("/")
public String index() {
return "您好,项目已启动,预您使用愉快!";
}
}

View File

@ -7,4 +7,5 @@ auth:
- /swagger-resources/**
- /swagger-ui.html
- /swagger-ui/**
- /doc.html
- /doc.html
- /