To pass control to the next entity in the filter chain, a filter must call the _______ method.
- continue()
- doFilter()
- forward()
- next()
To pass control to the next entity in the filter chain, a filter must call the doFilter() method, which allows the request to proceed to the next entity in the chain.
Loading...
Related Quiz
- Describe the role of Subresource Integrity (SRI) in preventing XSS attacks.
- How does a filter pass the request and response to the next entity in the filter chain?
- What is the benefit of implementing the SingleThreadModel interface in servlets?
- How does the WebSocket protocol handle message framing compared to HTTP?
- In what scenarios is it safe to have instance variables in a servlet?