• Y
  • List All
  • Feedback
    • This Project
    • This Group
    • All Projects
Profile Account settings Log out
  • Favorite
  • Project
  • All
Loading...
  • Log in
  • Sign up
2025_PROJECT / mjgo_admin star
  • Project homeH
  • CodeC
  • IssueI
  • Pull requestP
  • Review R
  • MilestoneM
  • BoardB
  • Files
  • Commit
  • Branches
mjgo_adminsrcmainwebappWEB-INFjspsecaccessDenied.jsp
Download as .zip file
File name
Commit message
Commit date
DATABASE
first commit
04-21
src/main
Merge remote-tracking branch 'origin/master'
04-24
.codetogether.ignore
first commit
04-21
.gitignore
first commit
04-21
pom.xml
mjon -> mjgo 수정
04-22
File name
Commit message
Commit date
java
5733 메인배너 이미지관리 좌표 추가
04-24
resources
5733 메인배너 이미지관리 좌표 추가
04-24
webapp
Merge remote-tracking branch 'origin/master'
04-24
File name
Commit message
Commit date
META-INF
first commit
04-21
MMS
first commit
04-21
WEB-INF
Merge remote-tracking branch 'origin/master'
04-24
common
first commit
04-21
crosseditor/binary/images
first commit
04-21
css
관리자페이지 기본 스타일 수정
04-22
direct
first commit
04-21
dist
first commit
04-21
download
first commit
04-21
font
first commit
04-21
font-flexslider
first commit
04-21
fonts
first commit
04-21
html
first commit
04-21
images
first commit
04-21
img
관리자페이지 레이아웃 수정
04-23
js
5733 메인배너 이미지관리 좌표 추가
04-24
mail
first commit
04-21
mjon/MMS
first commit
04-21
pb
관리자페이지 레이아웃 수정
04-23
public
first commit
04-21
publish
회원관리, 문자관리 하위메뉴 레이아웃 수정
04-22
sample_mjon
first commit
04-21
site
first commit
04-21
google53cfb10eb3856530.html
first commit
04-21
googlefa7d697b23d4a34a.html
first commit
04-21
imageEditorSample.html
first commit
04-21
imageEditorSample2.html
first commit
04-21
index.jsp
first commit
04-21
naver94c82af5badbae52b1e46e77b88410c9.html
first commit
04-21
robots.txt
first commit
04-21
sendRESTAPI_test_r1_send.jsp
first commit
04-21
sitemap.xml
first commit
04-21
tempPayPrint.html
first commit
04-21
tempPrint.html
first commit
04-21
tempPrint1.html
first commit
04-21
test.jsp
first commit
04-21
File name
Commit message
Commit date
META-INF
first commit
04-21
config/egovframework/springmvc
first commit
04-21
jsp
Merge remote-tracking branch 'origin/master'
04-24
lib
first commit
04-21
tld
first commit
04-21
decorators.xml
first commit
04-21
jeus-web-dd.xml
first commit
04-21
sitemesh.xml
first commit
04-21
web.xml
first commit
04-21
weblogic.xml
first commit
04-21
File name
Commit message
Commit date
agent
관리자페이지 레이아웃 수정
04-23
block
first commit
04-21
cmm
관리자페이지 레이아웃 수정
04-23
cnt
first commit
04-21
cntsource
first commit
04-21
com/utl/wed
first commit
04-21
cop
관리자페이지 레이아웃 수정
04-23
egovframework/com/uss/ion/bnr
first commit
04-21
holiday
관리자페이지 레이아웃 수정
04-23
kisa/kisa
first commit
04-21
kopost/search
first commit
04-21
layout
관리자페이지 기본 스타일 수정
04-22
letter
회원관리, 문자관리 하위메뉴 레이아웃 수정
04-22
main
메인페이지 이미지 수정
04-22
sec
관리자페이지 레이아웃 수정
04-23
sts/cst
first commit
04-21
sym
관리자페이지 레이아웃 수정
04-23
uat
관리자페이지 레이아웃 수정
04-23
uss
Merge remote-tracking branch 'origin/master'
04-24
web
first commit
04-21
blank.jsp
first commit
04-21
cntCNT_000000000862.jsp
first commit
04-21
File name
Commit message
Commit date
gmt
first commit
04-21
ram
관리자페이지 레이아웃 수정
04-23
rgm
관리자페이지 레이아웃 수정
04-23
rmt
관리자페이지 레이아웃 수정
04-23
accessDenied.jsp
first commit
04-21
hehihoho3@gmail.com 04-21 27fb232 first commit 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