bitcoin-atm
bitcoin atm for pyc inc.
git clone https://9o.is/git/bitcoin-atm.git
web.xml
(905B)
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <web-app
4 xmlns="http://java.sun.com/xml/ns/javaee"
5 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6 version="2.5"
7 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
8
9 <filter>
10 <filter-name>LiftFilter</filter-name>
11 <display-name>Lift Filter</display-name>
12 <description>The Filter that intercepts lift calls</description>
13 <filter-class>net.liftweb.http.LiftFilter</filter-class>
14 </filter>
15
16 <filter-mapping>
17 <filter-name>LiftFilter</filter-name>
18 <url-pattern>/*</url-pattern>
19 </filter-mapping>
20
21 <servlet>
22 <servlet-name>H2Console</servlet-name>
23 <servlet-class>org.h2.server.web.WebServlet</servlet-class>
24 <load-on-startup>0</load-on-startup>
25 </servlet>
26
27 <servlet-mapping>
28 <servlet-name>H2Console</servlet-name>
29 <url-pattern>/console/*</url-pattern>
30 </servlet-mapping>
31
32 </web-app>