This page last changed on Sep 28, 2009 by mlassau.
 | This is only available as of JIRA 4.0 and above. |
Purpose of this Module Type
Servlet Filter plugin modules allow you to deploy Java Servlet filters as a part of your plugin, specifying the location and ordering of your filter. This allows you to build filters that can tackle tasks like profiling and monitoring as well as content generation.
Configuration
The root element for the Servlet Filter plugin module is servlet-filter. It allows the following attributes and child elements for configuration:
Attributes
Name |
Required |
Description |
Default |
class |
|
The class which implements this plugin module. The class you need to provide depends on the module type. For example, Confluence theme, layout and colour-scheme modules can use classes already provided in Confluence. So you can write a theme-plugin without any Java code. But for macro and listener modules you need to write your own implementing class and include it in your plugin. The servlet filter Java class must implement javax.servlet.Filter. |
|
disabled |
|
Indicate whether the plugin module should be disabled by default (value='true') or enabled by default (value='false'). |
false |
i18n-name-key |
|
The localisation key for the human-readable name of the plugin module. |
|
key |
|
The identifier of the plugin module. This key must be unique within the plugin where it is defined.
Sometimes you will need to uniquely identify a module. Do this with the module complete key. A module with key fred in a plugin with key com.example.modules will have a complete key of com.example.modules:fred. I.e. the identifier of the servlet filter. |
N/A |
location |
|
The position of the filter in the application's filter chain. If two plugins provide filters at the same position, the 'weight' attribute (see below) is evaluated.
- after-encoding - Near the very top of the filter chain in the application, but after any filters which ensure the integrity of the request.
- before-login - Before the filter that logs in the user with any authentication information included in the request.
- before-decoration - Before the filter which does decoration of the response, typically with Sitemesh.
- before-dispatch - At the end of the filter chain, before any servlet or filter which handles the request by default.
|
before-dispatch |
name |
|
The human-readable name of the plugin module. I.e. the human-readable name of the filter. |
The plugin key |
system |
|
Indicates whether this plugin module is a system plugin module (value='true') or not (value='false'). Only available for non-OSGi plugins. |
false |
weight |
|
The weight of the filter, used to decide which order to place the filter in the chain for filters which have specified the same 'location' attribute (see above). The higher weight, the lower the filter's position. |
100 |
Elements
Name |
Required |
Description |
Default |
description |
|
The description of the plugin module. The 'key' attribute can be specified to declare a localisation key for the value instead of text in the element body. I.e. the description of the filter. |
|
init-param |
|
Initialisation parameters for the filter, specified using param-name and param-value sub-elements, just as in web.xml. This element and its child elements may be repeated. |
N/A |
resource |
|
A resource for this plugin module. This element may be repeated. A 'resource' is a non-Java file that a plugin may need in order to operate. Refer to Adding Plugin and Module Resources for details on defining a resource. |
N/A |
url-pattern |
|
The pattern of the URL to match. This element may be repeated. The URL pattern format is used in Atlassian plugin types to map them to URLs. On the whole, the pattern rules are consistent with those defined in the Servlet 2.3 API. The following wildcards are supported:
- * matches zero or many characters, including directory slashes
- ? matches zero or one character
Examples
- /mydir/* matches /mydir/myfile.xml
- /*/admin/*.??ml matches /mydir/otherdir/admin/myfile.html
|
N/A |
Example
Here is an example atlassian-plugin.xml file containing a single servlet filter:
<atlassian-plugin name="Hello World Filter" key="example.plugin.helloworld" plugins-version="2">
<plugin-info>
<description>A basic Servlet filter module test - says "Hello World!</description>
<vendor name="Atlassian Software Systems" url="http://www.atlassian.com"/>
<version>1.0</version>
</plugin-info>
<servlet-filter name="Hello World Servlet" key="helloWorld" class="com.example.myplugins.helloworld.HelloWorldFilter" location="before-dispatch" weight="200">
<description>Says Hello World, Australia or your name.</description>
<url-pattern>/helloworld</url-pattern>
<init-param>
<param-name>defaultName</param-name>
<param-value>Australia</param-value>
</init-param>
</servlet-filter>
</atlassian-plugin>
Accessing your Servlet Filter
Your servlet will be accessible within the Atlassian web application via each url-pattern you specify, but unlike the Servlet Plugin Module, the url-pattern is relative to the root of the web application.
For example, if you specify a url-pattern of /helloworld as above, and your Atlassian application was deployed at http://yourserver/jira — then your servlet filter would be accessed at http://yourserver/jira/helloworld .
Notes
Some information to be aware of when developing or configuring a Servlet Filter plugin module:
- Your servlet filter's init() method will not be called on web application startup, as for a normal filter. Instead, this method will be called the first time your filter is accessed after each time it is enabled. This means that if you disable a plugin containing a filter or a single servlet filter module, and re-enable it again, the filter will be re-created and its init() method will be called again.
- Because servlet filters are deployed beneath root, be careful when choosing each url-pattern under which your filter is deployed. If you plan to handle the request in the filter, it is recommended to use a value that will always be unique to the world!
|