Skip to content

Instantly share code, notes, and snippets.

@wfaler
Created January 17, 2011 21:42
Show Gist options
  • Select an option

  • Save wfaler/783537 to your computer and use it in GitHub Desktop.

Select an option

Save wfaler/783537 to your computer and use it in GitHub Desktop.
web.xml
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<display-name>Bowler Sample</display-name>
<filter>
<filter-name>examples</filter-name>
<filter-class>org.bowlerframework.http.BowlerFilter</filter-class>
<init-param>
<param-name>bootstrapClass</param-name>
<param-value>bowlerquickstart.Bootstrap</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>examples</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment