935090232@qq.com
2021-03-18 5d43370b99a03391c9271d04d3f351f0fd734dae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.matrix.system.common.actions;
 
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
 
/**
 * @description 首页配置
 * @author 姜友瑶
 * @email 935090232@qq.com
 * @date 2019-06-16
 */
@Controller
public class HomeAction {
 
    @RequestMapping(value = "/")
    public String home() {
        return "forward:common/toLogin";
    }
 
}