struts.xml 파일은 스트럿츠2 프레임워크에서 웹 애플리케이션 내의 처리 흐름을 결정하는 환경 설정 파일이다.
위치는 [프로젝트명]\WebContent\WEB-INF\src\struts.xml 이다.
내용은 아래와 같다.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
<package name="ch04" extends="struts-default">
<action name="HelloWord" class="action.HelloWorld">
<result name="success">/helloWorld.jsp</result>
</action>
</package>
</struts>
'개발 > 스트러츠2' 카테고리의 다른 글
한글 처리 : web.xml과 server.xml (0) | 2013.08.08 |
---|---|
프로퍼티 설정 파일 : sturts.properties (0) | 2013.08.08 |
디폴트 프로퍼티 설정 파일 : default.properties (0) | 2013.08.08 |
환경 설정 파일 : web.xml (0) | 2013.08.08 |
디폴트 설정 파일 : struts-default.xml (0) | 2013.08.08 |
환경설정 : 기본 라이브러리 (0) | 2013.08.08 |
스트러츠2 환경설정 : 초스피드 세팅 (0) | 2013.08.08 |