특별한딸기이야기
sturuts 기본 xml이랄까요... 본문
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>
Struts_And_Spring_Examples
</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>
Action
</servlet-name>
<servlet-class>
org.apache.struts.action.ActionServlet
</servlet-class>
<init-param>
<param-name>
config
</param-name>
<param-value>
/WEB-INF/Struts_Configs/struts-default.xml
</param-value>
</init-param>
<load-on-startup>
1
</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>
Action
</servlet-name>
<url-pattern>
*.do
</url-pattern>
</servlet-mapping>
</web-app>
'딸기 공부방 > struts and spring' 카테고리의 다른 글
요청 파라미터 처리(DynaActionForm이용) (1) | 2008.11.12 |
---|---|
요청 파라미터 처리(ActionForm이용) (1) | 2008.11.12 |
요청 파라미터 처리(RequestUtil이용) (1) | 2008.11.12 |
struts action 종류들이랄까요... (2) | 2008.11.12 |
struts 교재 올라온 카페 글 (0) | 2008.11.05 |