ApplicationDispatcher.java 文件源码

java
阅读 27 收藏 0 点赞 0 评论 0

项目:lazycat 作者:
@Override
public void dispatch(ServletRequest request, ServletResponse response) throws ServletException, IOException {
    if (Globals.IS_SECURITY_ENABLED) {
        try {
            PrivilegedDispatch dp = new PrivilegedDispatch(request, response);
            AccessController.doPrivileged(dp);
        } catch (PrivilegedActionException pe) {
            Exception e = pe.getException();

            if (e instanceof ServletException)
                throw (ServletException) e;
            throw (IOException) e;
        }
    } else {
        doDispatch(request, response);
    }
}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号