posted 18 years ago
I thought I got it all right until I came across question 5 on pg 703 in HFSJ:
For the benefit of those who do not have the book, the question is:
Which about filters are true?
E) A filter's doFilter() method must call doFilter() on the input FilterChain object in order to ensure that all filters have a chance to execute.
G) A filter's doFilter() may block further request processing.
I thought E is true and G is false.
The explanations given in the book:
E) Incorrect because doFilter() is not necessary if a filter wishes to block further request processing
G) This is correct
Could somebody give an explanation as to why E is false and G is true.
- If the rest of the filters in the chain should be executed, shouldn't the filter call the chain.doFilter() method? How can you ensure the rest of the filters are called without calling chain.doFilter()?
- Also, can a filter itself block further request processing?
- I read in the spec that "the filter chain can block the request by not making the call to invoke the next entity leaving the filter to fill the response object. and assumed that only a filter chain's doFilter() can block request not filter's doFilter(). Where am I going wrong?
Please help.
Sue
SCJP 1.2
SCWCD 1.4
SCBCD 5.0