-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathweb.xml
More file actions
14 lines (13 loc) · 671 Bytes
/
web.xml
File metadata and controls
14 lines (13 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.0"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<servlet>
<servlet-name>twitterFlightExample</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>twitterFlightExample</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
</web-app>