Skip to content

Instantly share code, notes, and snippets.

@kamcpp
Created September 2, 2014 05:47
Show Gist options
  • Select an option

  • Save kamcpp/b330ff13aeeef5d69b71 to your computer and use it in GitHub Desktop.

Select an option

Save kamcpp/b330ff13aeeef5d69b71 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="ISO-8859-1" ?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<servlet>
<servlet-name>abc</servlet-name>
<servlet-class>web.MyServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>abc</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