|
@@ -3,6 +3,7 @@ package com.ruoyi.web.controller.system;
|
|
import com.ruoyi.common.config.RuoYiConfig;
|
|
import com.ruoyi.common.config.RuoYiConfig;
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
|
+import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
@@ -11,7 +12,8 @@ import org.springframework.web.bind.annotation.RestController;
|
|
*
|
|
*
|
|
* @author ruoyi
|
|
* @author ruoyi
|
|
*/
|
|
*/
|
|
-@RestController
|
|
|
|
|
|
+//@RestController
|
|
|
|
+@Controller
|
|
public class SysIndexController {
|
|
public class SysIndexController {
|
|
/**
|
|
/**
|
|
* 系统基础配置
|
|
* 系统基础配置
|
|
@@ -24,6 +26,7 @@ public class SysIndexController {
|
|
*/
|
|
*/
|
|
@RequestMapping("/")
|
|
@RequestMapping("/")
|
|
public String index() {
|
|
public String index() {
|
|
- return StringUtils.format("欢迎使用{}后台管理框架,当前版本:v{},请通过前端地址访问。", ruoyiConfig.getName(), ruoyiConfig.getVersion());
|
|
|
|
|
|
+ return "index.html";
|
|
|
|
+// return StringUtils.format("欢迎使用{}后台管理框架,当前版本:v{},请通过前端地址访问。", ruoyiConfig.getName(), ruoyiConfig.getVersion());
|
|
}
|
|
}
|
|
}
|
|
}
|