增加user_setting_map表的外键。
[jibu.git] / jibu-web / jibu-core-extjs / src / main / webapp / WEB-INF / web.xml
blob80e4ea064c12f3ac17d9d9e964ca8c69a0e17077
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3    Licensed to the Apache Software Foundation (ASF) under one or more
4    contributor license agreements.  See the NOTICE file distributed with
5    this work for additional information regarding copyright ownership.
6    The ASF licenses this file to You under the Apache License, Version 2.0
7    (the "License"); you may not use this file except in compliance with
8    the License.  You may obtain a copy of the License at
10    http://www.apache.org/licenses/LICENSE-2.0
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17   -->
18 <web-app xmlns="http://java.sun.com/xml/ns/javaee"
19          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20          xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
21          version="2.5"> 
23   <description> Jibu web application </description>
24   <display-name>Jibu</display-name>
26   <!-- ===================== FILTER DEFINITIONS ======================= -->
27   <filter>
28     <filter-name>GuiceFilter</filter-name>
29     <filter-class>com.google.inject.servlet.GuiceFilter</filter-class>
30   </filter>
32   <filter-mapping>
33     <filter-name>GuiceFilter</filter-name>
34     <url-pattern>/*</url-pattern>
35   </filter-mapping>
37   <!-- ==================== LISTENER DEFINITIONS ====================== -->
38   <listener>
39     <listener-class>org.gaixie.jibu.security.servlet.GuiceServletConfig</listener-class>
40   </listener>
41   <listener>
42     <listener-class>org.gaixie.jibu.security.servlet.SessionCounter</listener-class>
43   </listener>
45   <!-- ======================= SESSION CONFIG ========================= -->
46   <session-config>
47     <session-timeout>10</session-timeout>
48   </session-config>
49 </web-app>