메뉴권한 미존재 유저 접속 시 빈 화면 frame 노출 처리

This commit is contained in:
dogyeom
2025-11-26 13:11:32 +09:00
parent 49e5d15034
commit f3b2e02aba
4 changed files with 39 additions and 2 deletions
@@ -122,5 +122,16 @@ public class MenuRenderController extends BaseAnnotationController {
return "/common/screen/top_04";
}
/**
* 메뉴권한 미존재 유저 접속 시 빈 화면 frame 노출 20251126
*
* @return 빈 화면 (blank_screen)
*/
@GetMapping("/blankScreen.do")
public String getBlankScreen(HttpServletRequest request, String serviceType, ModelMap modelMap) throws Exception {
return "/common/screen/blank_screen";
}
}