• Y
  • List All
  • Feedback
    • This Project
    • This Group
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
itnAdmin / kopost_sync star
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
kopost_syncsrcmainwebappWEB-INFjspsecaccessDenied.jsp
Download as .zip file
File name
Commit message
Commit date
DATABASE
첫번째 커밋
07-30
src/main
첫번째 커밋
07-30
.gitignore
첫번째 커밋
07-30
pom.xml
첫번째 커밋
07-30
File name
Commit message
Commit date
java/egovframework
첫번째 커밋
07-30
resources
첫번째 커밋
07-30
webapp
첫번째 커밋
07-30
File name
Commit message
Commit date
META-INF
첫번째 커밋
07-30
WEB-INF
첫번째 커밋
07-30
common
첫번째 커밋
07-30
css
첫번째 커밋
07-30
css_190620
첫번째 커밋
07-30
css_new
첫번째 커밋
07-30
direct
첫번째 커밋
07-30
fonts
첫번째 커밋
07-30
html/egovframework/com/cmm/utl/ckeditor
첫번째 커밋
07-30
images
첫번째 커밋
07-30
images_new
첫번째 커밋
07-30
img
첫번째 커밋
07-30
js
첫번째 커밋
07-30
index.jsp
첫번째 커밋
07-30
naver3c352dcb8777b0287e87288da97266c3.html
첫번째 커밋
07-30
naverb3a939669ac159cc50de88c5a4fa6167.html
첫번째 커밋
07-30
robots.txt
첫번째 커밋
07-30
File name
Commit message
Commit date
META-INF
첫번째 커밋
07-30
config/egovframework/springmvc
첫번째 커밋
07-30
jsp
첫번째 커밋
07-30
jsp_190620
첫번째 커밋
07-30
jsp_200330
첫번째 커밋
07-30
lib
첫번째 커밋
07-30
decorators.xml
첫번째 커밋
07-30
sitemesh.xml
첫번째 커밋
07-30
web.xml
첫번째 커밋
07-30
web.xml.190426
첫번째 커밋
07-30
web.xml.200429
첫번째 커밋
07-30
web.xml.220414
첫번째 커밋
07-30
web.xml.241230
첫번째 커밋
07-30
web.xml_0417
첫번째 커밋
07-30
web_20181031.xml
첫번째 커밋
07-30
weblogic.xml
첫번째 커밋
07-30
File name
Commit message
Commit date
cmm
첫번째 커밋
07-30
cnt
첫번째 커밋
07-30
com/utl/wed
첫번째 커밋
07-30
cop
첫번째 커밋
07-30
egovframework/com/uss/ion/bnr
첫번째 커밋
07-30
kopost/search
첫번째 커밋
07-30
layout
첫번째 커밋
07-30
main
첫번째 커밋
07-30
sec
첫번째 커밋
07-30
sounds/ko/numbers
첫번째 커밋
07-30
sts/cst
첫번째 커밋
07-30
sym
첫번째 커밋
07-30
uat
첫번째 커밋
07-30
uss
첫번째 커밋
07-30
web
첫번째 커밋
07-30
blank.jsp
첫번째 커밋
07-30
File name
Commit message
Commit date
gmt
첫번째 커밋
07-30
ram
첫번째 커밋
07-30
rgm
첫번째 커밋
07-30
rmt
첫번째 커밋
07-30
accessDenied.jsp
첫번째 커밋
07-30
rosewiper 07-30 1438cba 첫번째 커밋 UNIX
Raw Open in browser Change history
<%-- Class Name : accessDenied.jsp Description : 접근불가 메시지 화면(system) Modification Information 수정일 수정자 수정내용 ------- -------- --------------------------- 2009.02.01 lee.m.j 최초 생성 2011.08.31 JJY 경량환경 버전 생성 author : 공통서비스 개발팀 lee.m.j since : 2009.02.01 --%> <%@ page import="org.springframework.security.core.context.SecurityContextHolder" %> <%@ page import="org.springframework.security.core.Authentication" %> <%@ page import="org.springframework.security.web.access.AccessDeniedHandlerImpl" %> <%@ page isErrorPage="true"%> <%@ page contentType="text/html; charset=euc-kr" %> <%@ taglib prefix='c' uri='http://java.sun.com/jsp/jstl/core' %> <%@ page import="egovframework.rte.fdl.string.EgovStringUtil" %> <%@ page import="java.lang.String" %> <% boolean authenticateFail = false; if(request.getAttribute("authenticateFail")!=null && !request.getAttribute("authenticateFail").toString().equals("")){ authenticateFail = true; } boolean authFail = false; if(request.getAttribute("authFail")!=null && !request.getAttribute("authFail").toString().equals("")){ authFail = true; } String target = EgovStringUtil.null2void((String)request.getAttribute("target")); target = target.equals("") ? "_top" : target; %> <!DOCTYPE html> <html> <head> <title>Access is denied</title> <%-- <link rel="stylesheet" href="<c:url value='/css/admin.css'/>" type="text/css"> --%> </head> <script type="text/javascript"> function fncGoAfterErrorPage(){ if('<%=authenticateFail%>' == 'true' ){ document.dummyForm.target="_top"; document.dummyForm.action = "<c:url value='/empaftererrorpage.do'/>"; document.dummyForm.submit(); }else if('<%=authFail%>' == 'true'){ document.dummyForm.target="<%=target%>"; document.dummyForm.action = "<c:url value='/empaftererrorpage.do'/>"; document.dummyForm.submit(); }else{ //document.location.href = "<c:url value='/empaftererrorpage.do'/>"; history.back(-2); } } </script> <body> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="center" valign="top"><br /> <br /> <br /> <table width="600" border="0" cellpadding="0" cellspacing="0" > <tr> <td align="center"><table width="100%" border="0" cellspacing="9" cellpadding="0"> <tr> <td bgcolor="#FFFFFF"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="center"><table width="520" border="0" cellspacing="2" cellpadding="2"> <tr> <%-- <td width="74" rowspan="2" align="center"><img src="<c:url value='/images/danger.jpg'/>" alt="오류표시" width="74" height="74" /></td> --%> <td width="100%" rowspan="2" align="center"><img src="<c:url value='/images/common/accessDenied.png'/>" alt="오류표시" width="100%" height="100%" /></td> <%-- <td width="399" align="left" class="lt_text2"> <%= request.getAttribute(org.springframework.security.web.WebAttributes.AUTHENTICATION_EXCEPTION) %> <% Authentication auth = SecurityContextHolder.getContext().getAuthentication(); if (auth != null) { } %> </td> --%> </tr> <tr> <%-- <td align="left" valign="top" class="lt_text5">${exception.message}</td> --%> </tr> </table> <table width="500" border="0" cellspacing="2" cellpadding="2"> </table></td> </tr> <tr> <td><br /> <br /></td> </tr> <tr> <td align="center"><a href="#LINK" onclick="javascript:fncGoAfterErrorPage(); return false;"><img alt="이전화면 이동" src="<c:url value='/images/go_history.jpg'/>" width="90" height="29" border="0" /></a></td> </tr> </table> <br /></td> </tr> </table></td> </tr> </table> </td> </tr> </table> </body> </html>

          
        
    
    
Copyright Yona authors & © NAVER Corp. & NAVER LABS Supported by NAVER CLOUD PLATFORM

or
Sign in with github login with Google Sign in with Google
Reset password | Sign up