Skip to content

Instantly share code, notes, and snippets.

@franzwong
Created October 5, 2012 04:02
Show Gist options
  • Save franzwong/3838009 to your computer and use it in GitHub Desktop.
Save franzwong/3838009 to your computer and use it in GitHub Desktop.
Sample web.xml
<?xml version="1.0"?>
<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_3_0.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<servlet>
<servlet-name>My Servlet</servlet-name>
<servlet-class>test.MyServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>My Servlet</servlet-name>
<url-pattern>/myservlet</url-pattern>
</servlet-mapping>
</web-app>
@michiel2003
Copy link

Thanks was really helpfull

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment