Class TapestryFilter

java.lang.Object
org.apache.tapestry5.http.TapestryFilter
org.apache.tapestry5.TapestryFilter
All Implemented Interfaces:
javax.servlet.Filter

public class TapestryFilter extends TapestryFilter
The TapestryFilter is responsible for intercepting all requests into the web application. It identifies the requests that are relevant to Tapestry, and lets the servlet container handle the rest. It is also responsible for initializing Tapestry. The application is primarily configured via context-level init parameters.
tapestry.app-package
The application package (used to search for pages, components, etc.)
In addition, a JVM system property affects configuration: tapestry.execution-mode (with default value "production"). This property is a comma-separated list of execution modes. For each mode, an additional init parameter is checked for: tapestry.mode-modules; this is a comma-separated list of module class names to load. In this way, more precise control over the available modules can be obtained which is often needed during testing.