Skip to content

Instantly share code, notes, and snippets.

@Isxida
Created November 28, 2012 04:42
Show Gist options
  • Save Isxida/4159050 to your computer and use it in GitHub Desktop.
Save Isxida/4159050 to your computer and use it in GitHub Desktop.
Web xml investigacionJEE1
<?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"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>investigacionJEE1</display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<servlet>
<description></description>
<servlet-name>ClienteServlet</servlet-name>
<servlet-class>isx.servlet.ClienteServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ClienteServlet</servlet-name>
<url-pattern>/ServletCliente</url-pattern>
</servlet-mapping>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment