2024年4月15日发(作者:)
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
((HttpServletResponse) response).sendRedirect(“/”);
} else {
er(request, response);
}
}
}
/**
* 初始化函数,获取需要排除在外的url
*/
public void init(FilterConfig fConfig) throws ServletException {
excludedPages = tParameter(“excludedPages”);
if (mpty(excludedPages)) {
excludedPageArray = (“,”);
}
return;
}
}
发布评论