Skip to content

Instantly share code, notes, and snippets.

@b14ck0ps
Created March 4, 2023 11:22
Show Gist options
  • Save b14ck0ps/f3b7f06a51976d287f5cf84b7d047a0a to your computer and use it in GitHub Desktop.
Save b14ck0ps/f3b7f06a51976d287f5cf84b7d047a0a to your computer and use it in GitHub Desktop.
servlet-webxm-template
<?xml version="1.0" encoding="UTF-8"?>
<!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>ServletApp</display-name>
<description>New ServletApp</description>
<servlet>
<servlet-name>Home</servlet-name>
<servlet-class>app.Home</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Home</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