Last change
on this file since 4469 was
4469,
checked in by twagoo, 11 years ago
|
re-organised package structure for wicket app
|
File size:
1.1 KB
|
Line | |
---|
1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
---|
2 | <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
---|
3 | xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" |
---|
4 | version="2.5"> |
---|
5 | |
---|
6 | <display-name>vlo-web-app</display-name> |
---|
7 | |
---|
8 | <!-- |
---|
9 | There are three means to configure Wickets configuration mode and they |
---|
10 | are tested in the order given. |
---|
11 | |
---|
12 | 1) A system property: -Dwicket.configuration |
---|
13 | 2) servlet specific <init-param> |
---|
14 | 3) context specific <context-param> |
---|
15 | |
---|
16 | The value might be either "development" (reloading when templates change) or |
---|
17 | "deployment". If no configuration is found, "development" is the default. --> |
---|
18 | |
---|
19 | <filter> |
---|
20 | <filter-name>wicket.vlo-web-app</filter-name> |
---|
21 | <filter-class>org.apache.wicket.protocol.http.WicketFilter</filter-class> |
---|
22 | <init-param> |
---|
23 | <param-name>applicationClassName</param-name> |
---|
24 | <param-value>eu.clarin.cmdi.vlo.VloWicketApplication</param-value> |
---|
25 | </init-param> |
---|
26 | </filter> |
---|
27 | |
---|
28 | <filter-mapping> |
---|
29 | <filter-name>wicket.vlo-web-app</filter-name> |
---|
30 | <url-pattern>/*</url-pattern> |
---|
31 | </filter-mapping> |
---|
32 | </web-app> |
---|
Note: See
TracBrowser
for help on using the repository browser.