Skip to content

Instantly share code, notes, and snippets.

@ggrandes
Created November 10, 2013 15:08
Show Gist options
  • Save ggrandes/7399292 to your computer and use it in GitHub Desktop.
Save ggrandes/7399292 to your computer and use it in GitHub Desktop.
Typical web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0" metadata-complete="true">
<display-name>test</display-name>
<servlet>
<servlet-name>test</servlet-name>
<servlet-class>com.acme.Servlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>test</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment