26 lines
768 B
XML
26 lines
768 B
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<!DOCTYPE web-app
|
|
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
|
|
"http://java.sun.com/dtd/web-app_2_3.dtd">
|
|
|
|
<web-app>
|
|
|
|
<display-name>MyEclipse Hello World Examples</display-name>
|
|
<description>
|
|
Hello World type examples using Eclipse for: JSP, Java Beans, Servlets
|
|
</description>
|
|
|
|
<!-- Define servlets that are included in the example application -->
|
|
|
|
<servlet>
|
|
<servlet-name>MyHelloWorldServlet</servlet-name>
|
|
<servlet-class>org.gibiris.javaBootcampNoEclipse.MyHelloWorldServlet</servlet-class>
|
|
</servlet>
|
|
|
|
<servlet-mapping>
|
|
<servlet-name>MyHelloWorldServlet</servlet-name>
|
|
<url-pattern>/servlet/MyHelloWorldServlet</url-pattern>
|
|
</servlet-mapping>
|
|
|
|
</web-app>
|