
Spring
文章平均质量分 81
IT艺术家-rookie
IT艺术家
展开
-
Spring---apache.shiro--过滤器Filter---AuthenticationFilter抽象类
Base class for all Filters that require the current user to be authenticated. This class encapsulates the logic of checking whether a user is already authenticated in the system while subclasses are required to perform specific logic for unauthenticated r.原创 2021-11-17 17:18:06 · 384 阅读 · 0 评论 -
Spring---apache.shiro--过滤器Filter---AccessControlFilter抽象类
Superclass for any filter that controls access to a resource and may redirect the user to the login page if they are not authenticated. This superclass provides the method {@link #saveRequestAndRedirectToLogin(javax.servlet.ServletRequest, javax.servlet..原创 2021-11-17 17:05:30 · 486 阅读 · 0 评论 -
Spring---apache.shiro--过滤器Filter---PathConfigProcessor接口
A PathConfigProcessor processes configuration entries on a per path (url) basis.Processes the specified {@code config}, unique to the given {@code path}, and returns the Filter that should execute for that path/config combination.处理指定的{@code config},.原创 2021-11-17 16:28:58 · 219 阅读 · 0 评论 -
Spring---apache.shiro--过滤器Filter---AdviceFilter抽象类
A Servlet Filter that enables AOP-style "around" advice for a ServletRequest via{@link #preHandle(javax.servlet.ServletRequest, javax.servlet.ServletResponse) preHandle},{@link #postHandle(javax.servlet.ServletRequest, javax.servlet.ServletResponse) pos.原创 2021-11-17 16:13:18 · 557 阅读 · 0 评论 -
Spring---apache.shiro--过滤器Filter---OncePerRequestFilter抽象类
Filter base class that guarantees to be just executed once per request, on any servlet container. It provides a {@link #doFilterInternal} method with HttpServletRequest and HttpServletResponse arguments.在任何servlet容器上,保证每个请求只执行一次的过滤器基类。它提供了一个带有HttpServlet.原创 2021-11-17 15:31:21 · 781 阅读 · 0 评论 -
Spring---apache.shiro--过滤器Filter---NameableFilter抽象类
Allows a filter to be named via JavaBeans-compatible {@link #getName()}/{@link #setName(String)} methods. If no name is specified, the name of the filter will default to the name given to it in {@code web.xml} (the {@code FilterConfig}'s {@link javax.ser.原创 2021-11-17 14:31:59 · 146 阅读 · 0 评论 -
Spring----apache.shiro--过滤器Filter---AbstractFilter抽象类
Sets the filter’s {@link #setFilterConfig filterConfig} and then immediately calls {@link #onFilterConfigSet() onFilterConfigSet()} to trigger any processing a subclass might wish to perform.设置过滤器的{@link #setFilterConfig filterConfig},然后立即调用{@link #onFil.原创 2021-11-17 14:06:08 · 476 阅读 · 0 评论 -
Spring----过滤器Filter--Filter接口
这是对Filter接口源码注释的翻译以及个人的理解A filter is an object that performs filtering tasks on either the request to a resource (a servlet or static content), or on the response from a resource, or both.过滤器是对资源请求(servlet或静态内容)或来自资源的响应执行过滤任务的对象,或两者兼有。Filters perform原创 2021-11-17 11:24:54 · 536 阅读 · 0 评论