2021-02-20 10:07:25 +08:00
|
|
|
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() {
|
2021-02-26 11:25:14 +08:00
|
|
|
// if (SessionUtils.getUser() == null) {
|
|
|
|
if (null == null) {
|
2021-02-20 10:07:25 +08:00
|
|
|
return "login.html";
|
|
|
|
} else {
|
|
|
|
return "redirect:/";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|