Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.54 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  3.     version="2.5">
  4.     <filter>
  5.         <filter-name>com.example.InterceptFilter</filter-name>
  6.         <filter-class>com.example.InterceptFilter</filter-class>
  7.     </filter>
  8.  
  9.     <filter-mapping>
  10.         <filter-name>com.example.InterceptFilter</filter-name>
  11.         <url-pattern>/*</url-pattern>
  12.     </filter-mapping>
  13. </web-app>