SysIndexController.java 777 B

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