权限管理,

Content Model : (module-name? | ((((description*, display-name*, icon*)) | distributable | context-param | filter | filter-mapping | listener | servlet | servlet-mapping | session-config | mime-mapping | welcome-file-list | error-page | jsp-config | security-constraint | login-config | security-role | ((env-entry*, ejb-ref*, ejb-local-ref*, ((service-ref*)), resource-ref*, resource-env-ref*, message-estination-ref*, persistence-context-ref*, persistence-unit-ref*, post- construct*, pre-destroy*, data-source*)) | message-destination | locale-encoding-mapping-list)) | absolute-ordering)*

可知<welcome-file-list> 之后添加    

<error-page>
        <exception-type>cn.itcast.estore.exception.PrivilegeException</exception-type>
        <location>/error/privilegeError.jsp</location>
    </error-page>

 

privilegeError.jsp

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<h4>权限不足</h4>

 

package cn.itcast.estore.exception;

public class PrivilegeException extends RuntimeException {

    public PrivilegeException() {
        super();
    }

    public PrivilegeException(String message, Throwable cause,
            boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }

    public PrivilegeException(String message, Throwable cause) {
        super(message, cause);
    }

    public PrivilegeException(String message) {
        super(message);
    }

    public PrivilegeException(Throwable cause) {
        super(cause);
    }

}
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值