-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathweb.xml
More file actions
19 lines (17 loc) · 738 Bytes
/
web.xml
File metadata and controls
19 lines (17 loc) · 738 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<servlet>
<display-name>Crawl Data Extractor</display-name>
<servlet-name>crawl_servlet</servlet-name>
<servlet-class>com.pjaol.crawler.CrawlServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>crawl_servlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>