mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2026-02-03 17:15:41 +08:00
【issues/I52J6R】gateway,在网关路由页面如何设置路由条件Header
默认不启用xxljob
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
package com.alibaba.nacos.control;
|
||||
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.ui.Model;
|
||||
import org.springframework.web.bind.annotation.GetMapping;
|
||||
|
||||
/**
|
||||
* 积木报表-设置默认首页跳转
|
||||
*/
|
||||
@Controller
|
||||
public class IndexController {
|
||||
private Logger logger = LoggerFactory.getLogger(IndexController.class);
|
||||
|
||||
@GetMapping("/")
|
||||
public String index(Model model) {
|
||||
return "/nacos"; // 视图重定向 - 跳转
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user