Line | |
---|
1 |
<?xml version="1.0" encoding="ISO-8859-1"?> |
---|
2 |
|
---|
3 |
<!DOCTYPE web-app PUBLIC |
---|
4 |
"-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" |
---|
5 |
"http://java.sun.com/dtd/web-app_2_3.dtd"> |
---|
6 |
|
---|
7 |
<web-app> |
---|
8 |
|
---|
9 |
<display-name>KyuriBoard</display-name> |
---|
10 |
|
---|
11 |
<description>Simple application by Spring</description> |
---|
12 |
|
---|
13 |
<context-param> |
---|
14 |
<param-name>log4jConfigLocation</param-name> |
---|
15 |
<param-value>/WEB-INF/log4j.properties</param-value> |
---|
16 |
</context-param> |
---|
17 |
|
---|
18 |
<context-param> |
---|
19 |
<param-name>contextConfigLocation</param-name> |
---|
20 |
<param-value> |
---|
21 |
/WEB-INF/kyuriboard-ibatis.xml |
---|
22 |
/WEB-INF/kyuriboard-service.xml |
---|
23 |
</param-value> |
---|
24 |
</context-param> |
---|
25 |
|
---|
26 |
<listener> |
---|
27 |
<listener-class>org.springframework.web.util.Log4jConfigListener</listener-class> |
---|
28 |
</listener> |
---|
29 |
|
---|
30 |
<listener> |
---|
31 |
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> |
---|
32 |
</listener> |
---|
33 |
|
---|
34 |
<servlet> |
---|
35 |
<servlet-name>kyuriboard</servlet-name> |
---|
36 |
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> |
---|
37 |
<load-on-startup>2</load-on-startup> |
---|
38 |
</servlet> |
---|
39 |
|
---|
40 |
<servlet-mapping> |
---|
41 |
<servlet-name>kyuriboard</servlet-name> |
---|
42 |
<url-pattern>*.do</url-pattern> |
---|
43 |
</servlet-mapping> |
---|
44 |
|
---|
45 |
<welcome-file-list> |
---|
46 |
<welcome-file>index.html</welcome-file> |
---|
47 |
</welcome-file-list> |
---|
48 |
|
---|
49 |
</web-app> |
---|