45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
<%
|
|
response.setStatus(403);
|
|
|
|
//获取异常类
|
|
Throwable ex = Exceptions.getThrowable(request);
|
|
|
|
// 如果是异步请求或是手机端,则直接返回信息
|
|
if (Servlets.isAjaxRequest(request)) {
|
|
if (ex!=null && StringUtils.startsWith(ex.getMessage(), "msg:")){
|
|
out.print(StringUtils.replace(ex.getMessage(), "msg:", ""));
|
|
}else{
|
|
out.print("操作权限不足.");
|
|
}
|
|
}
|
|
|
|
//输出异常信息页面
|
|
else {
|
|
%>
|
|
<%@page import="com.jeeplus.common.web.Servlets"%>
|
|
<%@page import="com.jeeplus.common.utils.Exceptions"%>
|
|
<%@page import="com.jeeplus.common.utils.StringUtils"%>
|
|
<%@page contentType="text/html;charset=UTF-8" isErrorPage="true"%>
|
|
<%@include file="/webpage/include/taglib.jsp"%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>403 - 操作权限不足</title>
|
|
<%@include file="/webpage/include/head.jsp" %>
|
|
</head>
|
|
<body>
|
|
<div class="container-fluid">
|
|
<div class="page-header"><h1>操作权限不足.</h1></div>
|
|
<%
|
|
if (ex!=null && StringUtils.startsWith(ex.getMessage(), "msg:")){
|
|
out.print("<div>"+StringUtils.replace(ex.getMessage(), "msg:", "")+" <br/> <br/></div>");
|
|
}
|
|
%>
|
|
<div><a href="javascript:" onclick="history.go(-1);" class="btn">返回上一页</a></div>
|
|
<script>try{top.$.jBox.closeTip();}catch(e){}</script>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<%
|
|
} out = pageContext.pushBody();
|
|
%> |