Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ramesh-lingappan/c6fe32e152720130ce2116895db91b7f to your computer and use it in GitHub Desktop.
Save ramesh-lingappan/c6fe32e152720130ce2116895db91b7f to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5">
<servlet>
<servlet-name>hello</servlet-name>
<servlet-class>com.rameshl.demos.helloworld.HelloWorldServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>hello</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