Writer instructions | |
|---|---|
Page title | For most spaces, this page must be titled Space announcements. For spaces with localized content, this page must be titled Space announcements l10n. |
Purpose | Provide an announcement banner on every page of your space. |
Location | Move this page outside of your home branch. |
Guidelines | |
Filter mapping element
The filter-mapping element tells the servlet container when a particular filter should be invoked, either by matching the URL of the incoming request or, more simply, by matching the servlet name.
Without a filter mapping, the BTM Servlet Filter is never invoked.
This element should conform to the rules appropriate to the level of Java EE Servlet Specification supported by your Application Server. The following are guidelines only.
Element name | Required / optional | Description |
|---|---|---|
filter-name | Required | Matches the filter-name used in the filter declaration. |
url-mapping | Required, or use servlet-name | A URL pattern which, if matched, causes the filter to be invoked. |
servlet-name | Required, or use url-mapping | The name of the servlet which should be filtered. |