filterchain
-
This method accepts three input parameters : a ServletRequest , a response , and a FilterChain object .
这个方法接受三个输入参数:一个ServletRequest、response和一个FilterChain对象。
-
Your filter class will be passed a reference to a FilterChain object to allow the filter to pass control to the next resource in the chain .
该过滤器类的一个引用将传递给FilterChain对象,以允许过滤器把控制权传递给链中的下一个资源。
-
From a programming standpoint , your filter class will implement the Filter interface and then use the FilterChain and FilterConfig interfaces within your filter class .
从编程的角度看,过滤器类将实现Filter接口,然后使用这个过滤器类中的FilterChain和FilterConfig接口。
-
If a request is made for the Registration page , Register . jsf , directly , send the request to this page without calling any other servlet filters in the FilterChain object .
如果直接请求Registration页面Reister.jsf,则将请求发送到该页面,同时不调用FilterChain对象中的任何其他servlet过滤器。