| | |
| | | import cc.mrbird.febs.system.service.IUserDataPermissionService; |
| | | import cc.mrbird.febs.system.service.IUserService; |
| | | import lombok.RequiredArgsConstructor; |
| | | import lombok.extern.slf4j.Slf4j; |
| | | import org.apache.shiro.authz.AuthorizationInfo; |
| | | import org.apache.shiro.authz.annotation.RequiresPermissions; |
| | | import org.apache.shiro.session.ExpiredSessionException; |
| | |
| | | /** |
| | | * @author MrBird |
| | | */ |
| | | @Slf4j |
| | | @Controller("systemView") |
| | | @RequiredArgsConstructor |
| | | public class ViewController extends BaseController { |
| | |
| | | |
| | | |
| | | @GetMapping("/") |
| | | public String redirectIndex() { |
| | | public String redirectIndex(HttpServletRequest request) { |
| | | log.info("请求地址:{}",request.getRequestURL()); |
| | | return "redirect:/index"; |
| | | } |
| | | |