jyy
2020-12-02 7efbe93bdb75762f50a1d2d104e05a9e4db49ea2
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";
    }
 
}