mirror of
https://github.com/ethauvin/rife2-hello.git
synced 2025-04-30 01:18:12 -07:00
18 lines
No EOL
660 B
XML
18 lines
No EOL
660 B
XML
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
|
|
version="4.0">
|
|
<filter>
|
|
<filter-name>RIFE2</filter-name>
|
|
<filter-class>rife.servlet.RifeFilter</filter-class>
|
|
<init-param>
|
|
<param-name>rifeSiteClass</param-name>
|
|
<param-value>hello.App</param-value>
|
|
</init-param>
|
|
</filter>
|
|
|
|
<filter-mapping>
|
|
<filter-name>RIFE2</filter-name>
|
|
<url-pattern>/*</url-pattern>
|
|
</filter-mapping>
|
|
</web-app> |