-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb.xml
More file actions
29 lines (21 loc) · 792 Bytes
/
web.xml
File metadata and controls
29 lines (21 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"http://java.sun.com/j2ee/dtds/web-app_2.2.dtd">
<web-app>
<display-name>BioUML launcher</display-name>
<description>Launch server BioUML instance</description>
<servlet>
<servlet-name>BioUML</servlet-name>
<servlet-class>biouml.launcher.BioUMLLauncher</servlet-class>
<init-param>
<param-name>path</param-name>
<param-value>@@server.path.absolute@@</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>BioUML</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>