类 ApplicationContextRequestMatcher<C>

  • 类型参数:
    C - the type of the context that the match method actually needs to use. Can be an ApplicationContext or a class of an existing bean.
    所有已实现的接口:
    org.springframework.security.web.util.matcher.RequestMatcher

    public abstract class ApplicationContextRequestMatcher<C>
    extends Object
    implements org.springframework.security.web.util.matcher.RequestMatcher
    ApplicationContext backed RequestMatcher. Can work directly with the ApplicationContext, obtain an existing bean or create a new bean that is autowired in the usual way.
    从以下版本开始:
    2.0.0
    • 方法详细资料

      • matches

        public final boolean matches​(javax.servlet.http.HttpServletRequest request)
        指定者:
        matches 在接口中 org.springframework.security.web.util.matcher.RequestMatcher
      • matches

        protected abstract boolean matches​(javax.servlet.http.HttpServletRequest request,
                                           Supplier<C> context)
        Decides whether the rule implemented by the strategy matches the supplied request.
        参数:
        request - the source request
        context - a supplier for the initialized context (may throw an exception)
        返回:
        if the request matches
      • initialized

        protected void initialized​(Supplier<C> context)
        Called once the context has been initialized.
        参数:
        context - a supplier for the initialized context (may throw an exception)