Java / Design Patterns
Explain Intercepting Filter pattern in Java.
Intercepting Filters trigger actions before or after an incoming request is processed by a handler.
Intercepting filters represents centralized components in a web application, common to all requests and extensible without affecting existing handlers.
AOP is based on Interception filter pattern.
More Related questions...