Skip to content

Instantly share code, notes, and snippets.

@ishtaka
Created April 11, 2014 08:33
Show Gist options
  • Save ishtaka/52b9b92f6b95018734f2 to your computer and use it in GitHub Desktop.
Save ishtaka/52b9b92f6b95018734f2 to your computer and use it in GitHub Desktop.
[Tomcat]web.xmlサンプル
<!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>
<servlet>
<servlet-name>HelloServlet</servlet-name>
<servlet-class>HelloServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>HelloServlet</servlet-name>
<url-pattern>/HelloServlet</url-pattern>
</servlet-mapping>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment