Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  4.     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  5.     id="WebApp_ID" version="2.5">
  6.     <display-name>HelloWorld</display-name>
  7.     <welcome-file-list>
  8.         <welcome-file>index.html</welcome-file>
  9.     </welcome-file-list>
  10.  
  11.     <servlet>
  12.         <servlet-name>HelloWorldServlet</servlet-name>
  13.         <servlet-class>helloWorld.HelloWorldServlet</servlet-class>
  14.     </servlet>
  15.  
  16.     <servlet-mapping>
  17.         <servlet-name>HelloWorldServlet</servlet-name>
  18.         <url-pattern>/helloWorldServlet</url-pattern>
  19.     </servlet-mapping>
  20.  
  21. </web-app>