mirror of https://gitee.com/y_project/RuoYi.git
修复权限校验失败跳转页面配置错误的bug
parent
d9aa73a7ad
commit
125934592c
|
@ -60,6 +60,6 @@ public class SysLoginController extends BaseController
|
||||||
@GetMapping("/unauth")
|
@GetMapping("/unauth")
|
||||||
public String unauth()
|
public String unauth()
|
||||||
{
|
{
|
||||||
return "/error/unauth";
|
return "error/unauth";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -38,7 +38,7 @@ public class GlobalExceptionHandler
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
ModelAndView modelAndView = new ModelAndView();
|
ModelAndView modelAndView = new ModelAndView();
|
||||||
modelAndView.setViewName("/error/unauth");
|
modelAndView.setViewName("error/unauth");
|
||||||
return modelAndView;
|
return modelAndView;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue