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