package io.dataease.controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; @Controller @RequestMapping public class IndexController { @GetMapping(value = "/") public String index() { return "index.html"; } @GetMapping(value = "/login") public String login() { // if (SessionUtils.getUser() == null) { if (null == null) { return "login.html"; } else { return "redirect:/"; } } }