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"; } }