annotate src/main/webapp/WEB-INF/web.xml @ 1:6556943c4fb9

include neo4j and restlet
author casties
date Wed, 27 Jun 2012 17:52:02 +0200
parents
children 47b53ae385d1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
1 <?xml version="1.0" encoding="UTF-8"?>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
2 <web-app id="WebApp_ID" version="2.4"
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
3 xmlns="http://java.sun.com/xml/ns/j2ee"
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
5 xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
6 http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
7 <display-name>RESTfulJavaWebServices-Restlet</display-name>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
8 <!-- Application classname -->
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
9 <context-param>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
10 <param-name>org.restlet.application</param-name>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
11 <param-value>de.mpiwg.itgroup.annotations.restlet.RestServer</param-value>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
12 </context-param>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
13 <!-- Restletadapter -->
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
14 <servlet>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
15 <servlet-name>RestletServlet</servlet-name>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
16 <servlet-class>org.restlet.ext.servlet.ServerServlet</servlet-class>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
17 </servlet>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
18 <!-- Catchallrequests -->
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
19 <servlet-mapping>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
20 <servlet-name>RestletServlet</servlet-name>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
21 <!-- <url-pattern>/annotator/*</url-pattern> -->
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
22 <url-pattern>/*</url-pattern>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
23 </servlet-mapping>
6556943c4fb9 include neo4j and restlet
casties
parents:
diff changeset
24 </web-app>