<% 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.thinkgem.jeesite.common.web.Servlets"%> <%@page import="com.thinkgem.jeesite.common.utils.Exceptions"%> <%@page import="com.thinkgem.jeesite.common.utils.StringUtils"%> <%@page contentType="text/html;charset=UTF-8" isErrorPage="true"%> <%@include file="/WEB-INF/views/include/taglib.jsp"%> 403 - 操作权限不足 <%@include file="/WEB-INF/views/include/head.jsp" %>
<% if (ex!=null && StringUtils.startsWith(ex.getMessage(), "msg:")){ out.print("
"+StringUtils.replace(ex.getMessage(), "msg:", "")+"

"); } %>
返回上一页
<% } out = pageContext.pushBody(); %>