Last change
on this file since 29 was
20,
checked in by fmguler, 14 years ago
|
Refs #2 - Scheduling System web uygulaması ilk import. Spring 3 kullanılıyor.
|
File size:
1.1 KB
|
Line | |
---|
1 | <?xml version="1.0" encoding="UTF-8"?> |
---|
2 | <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> |
---|
3 | <context-param> |
---|
4 | <param-name>contextConfigLocation</param-name> |
---|
5 | <param-value>/WEB-INF/applicationContext.xml</param-value> |
---|
6 | </context-param> |
---|
7 | <listener> |
---|
8 | <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> |
---|
9 | </listener> |
---|
10 | <servlet> |
---|
11 | <servlet-name>dispatcher</servlet-name> |
---|
12 | <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> |
---|
13 | <load-on-startup>2</load-on-startup> |
---|
14 | </servlet> |
---|
15 | <servlet-mapping> |
---|
16 | <servlet-name>dispatcher</servlet-name> |
---|
17 | <url-pattern>*.htm</url-pattern> |
---|
18 | </servlet-mapping> |
---|
19 | <session-config> |
---|
20 | <session-timeout> |
---|
21 | 30 |
---|
22 | </session-timeout> |
---|
23 | </session-config> |
---|
24 | <welcome-file-list> |
---|
25 | <welcome-file>redirect.jsp</welcome-file> |
---|
26 | </welcome-file-list> |
---|
27 | </web-app> |
---|
Note: See
TracBrowser
for help on using the repository browser.