THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
Wiki Markup |
---|
{scrollbar} |
Request Processing
Contents
Table of Contents | ||
---|---|---|
|
How do I get Tapestry to not handle a request?
Often, when integrating with outside libraries, or working with legacy code, you will want Tapestry to ignore a request and let the normal servlet or other processing handle the request.
The easy way to do this is to contribute a regular expression to the IgnoredPathsFilter service, whose job is to exclude some requests.
Code Block |
---|
public static void contributeIgnoredPathsFilter(Configuration<String> configuration)
{
configuration.add("/dwr/.*");
}
|
...
Alternately, you can configure the Tapestry application to execute inside a folder to avoid conflicts. See the notes on the configuration page.
Wiki Markup |
---|
{scrollbar} |