欢迎信息
This commit is contained in:
parent
c782464258
commit
b5539b634c
|
@ -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 "您好,项目已启动,预您使用愉快!";
|
||||
}
|
||||
}
|
|
@ -8,3 +8,4 @@ auth:
|
|||
- /swagger-ui.html
|
||||
- /swagger-ui/**
|
||||
- /doc.html
|
||||
- /
|
Loading…
Reference in New Issue
Block a user