Skip to content

Instantly share code, notes, and snippets.

@BalicantaYao
Created December 3, 2017 07:29
Show Gist options
  • Save BalicantaYao/2393ae6e893253a43ce6f2f2a3fe3a68 to your computer and use it in GitHub Desktop.
Save BalicantaYao/2393ae6e893253a43ce6f2f2a3fe3a68 to your computer and use it in GitHub Desktop.
web xml example
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<servlet>
<servlet-name>SimpleServlet</servlet-name>
<servlet-class>week3.SimpleServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>SimpleServlet</servlet-name>
<url-pattern>/simple-servlet.asp</url-pattern>
</servlet-mapping>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment