■ Static Parameters Interceptor
- xml 파일에 아래와 같이 태그를 추가한다.
<param name="name">홍길동</param>
<interceptor-ref name="staticParams"/>
- action class 에서
param 네임으로 getter, setter를 생성한다.
■ Timer Interceptor
클라이언트가 보내는 파라미터를 무시하고 미리 설정해 놓은 파라미터로 값을 넣는다.
struts.xml에 정의된 파라미터 값들을 액션에저장한다. <action> 태그 의 직속 자식으로<param> 태그가 있다.
- xml 파일에 아래와 같이 태그를 추가한다.
<param name="name">홍길동</param>
<interceptor-ref name="staticParams"/>
- action class 에서
param 네임으로 getter, setter를 생성한다.
■ Timer Interceptor
인터셉터와 뷰 처리를 포함하여 액션의 작업 처리 시간을 출력한다.
- xml 파일 안에 아래와 같이 추가
<interceptor-ref name="timer"/> <!-- 작업시간에 대한 결과를 출력한다. -->
이렇게 추가해 주고 실행하면 작업 시간이 콘솔 창이 나타난다.
'FrameWork > Struts2' 카테고리의 다른 글
Struts2 + Spring 연동, + iBatis (1) | 2009.07.09 |
---|---|
Struts2에서 Action에 있는 데이타로 JSP에서 보여주기. (0) | 2009.07.09 |
Struts2 Interceptor(인터셉터) 2. (0) | 2009.07.09 |
Struts2에서 freemarker-2.3.8.jar와 ognl-2.6.11.jar 에 대한 내용. (0) | 2009.07.08 |
Struts2에서 Tiles Plugin 사용하기. (1) | 2009.07.08 |
Struts2 Interceptors(인터셉터) 1. (0) | 2009.07.07 |
Struts2 에서 upload & download 하기 3. (0) | 2009.07.07 |
Struts2 에서 upload & download 하기 2. (0) | 2009.07.07 |
Struts2 에서 upload & download 하기 1. (0) | 2009.07.06 |
Struts2 에서 session 처리하는 방법(로그인, 로그아웃 해보기). (0) | 2009.07.05 |