提交 | 用户 | 时间
|
e57a89
|
1 |
package com.jcdm.web.controller.system; |
懒 |
2 |
|
|
3 |
import org.springframework.beans.factory.annotation.Autowired; |
|
4 |
import org.springframework.web.bind.annotation.RequestMapping; |
|
5 |
import org.springframework.web.bind.annotation.RestController; |
|
6 |
import com.jcdm.common.config.MesConfig; |
|
7 |
import com.jcdm.common.utils.StringUtils; |
|
8 |
|
|
9 |
/** |
|
10 |
* 首页 |
|
11 |
* |
|
12 |
* @author jc |
|
13 |
*/ |
|
14 |
@RestController |
|
15 |
public class SysIndexController |
|
16 |
{ |
|
17 |
/** 系统基础配置 */ |
|
18 |
@Autowired |
|
19 |
private MesConfig mesConfig; |
|
20 |
|
|
21 |
/** |
|
22 |
* 访问首页,提示语 |
|
23 |
*/ |
|
24 |
@RequestMapping("/") |
|
25 |
public String index() |
|
26 |
{ |
|
27 |
return StringUtils.format("欢迎使用{}后台管理框架,当前版本:v{},请通过前端地址访问。", mesConfig.getName(), mesConfig.getVersion()); |
|
28 |
} |
|
29 |
} |