Struts 2 액 션 에서 Response 대상 을 얻 는 네 가지 방법
그러나 Struts 2 Action 류 에 서 는 여전히 이 대상 을 얻 을 수 있 는 방법 이 많다.다음은 이 대상 들 을 얻 는 네 가지 방법 을 보 여 준다.
【방법 1】Struts 2 Aware 차단 기 를 사용 합 니 다.
이런 방법 은 Action 류 가 상응하는 차단기 인 터 페 이 스 를 실현 해 야 한다.HttpServletResponse 대상 을 얻 으 려 면 org.apache.struts 2.interceptor.servletResponseAware 인 터 페 이 스 를 실현 해 야 합 니 다.코드 는 다음 과 같 습 니 다.
importcom.opensymphony.xwork2.ActionSupport;
importjavax.servlet.http.*;
importorg.apache.struts2.interceptor.*;
publicclassMyActionextendsActionSupportimplementsServletResponseAware
{
privatejavax.servlet.http.HttpServletResponseresponse;
// HttpServletResponse
publicvoidsetServletResponse(HttpServletResponseresponse)
{
this.response=response;
}
publicStringexecute()throwsException
{
response.getWriter().write(" ServletResponseAware ");
}
}
위의 코드 에서 MyAction 은 ServletResponse Aware 인 터 페 이 스 를 실 현 했 고 setServletResponse 방법 을 실현 했다.하나의 동작 류 가 ServletResponse Aware 인 터 페 이 스 를 실현 하면 Struts 2 는 execute 방법 을 호출 하기 전에 setServletResponse 방법 을 호출 하고 response 인 자 를 이 방법 으로 전송 합 니 다.HttpServletRequest,HttpSession,Cookie 등 대상 을 얻 으 려 면 액 션 클래스 는 각각 ServletRequestAware,SessionAware,CookiesAware 등 인 터 페 이 스 를 구현 할 수 있다.이 인터페이스 들 은 모두 org.apache.struts 2.interceptor 패키지 에 있 습 니 다.
요청 인 자 를 얻 으 려 면 동작 류 는 org.apache.struts 2.interceptor.ParameterAware 인 터 페 이 스 를 실현 할 수 있 습 니 다.단,특정한 인자 가 존재 하 는 지 판단 하려 면 com.opensymphony.xwork 2.interceptor.ParameterNameAware 인 터 페 이 스 를 실현 할 수 있 습 니 다.이 인 터 페 이 스 는 acceptable ParameterName 방법 이 있 습 니 다.Struts 2 가 요청 인 자 를 얻 었 을 때 한 번 호출 됩 니 다.독 자 는 이 방법 에서 나중에 사용 할 수 있 도록 모든 요청 매개 변 수 를 기록 할 수 있다.이 방법의 정 의 는 다음 과 같다.
boolean acceptableParameterName(String parameterName);
【방법 2】RequestAware 차단 기 사용 하기
이런 방법 은 첫 번 째 방법 과 유사 하 다.동작 류 는 org.apache.struts 2.interceptor.RequestAware 인 터 페 이 스 를 실현 해 야 합 니 다.다른 것 은 RequestAware 에서 com.opensymphony.xwork 2.util.Ognl ValueStack 대상 을 얻 을 수 있 습 니 다.이 대상 은 response,request 및 기타 정 보 를 얻 을 수 있 습 니 다.코드 는 다음 과 같다.
importjava.util.Map;
importorg.apache.struts2.*;
importcom.opensymphony.xwork2.ActionSupport;
importjavax.servlet.http.*;
importcom.opensymphony.xwork2.util.*;
importorg.apache.struts2.interceptor.*;
publicclassFirstActionextendsActionSupportimplementsRequestAware
{
privateMaprequest;
privateHttpServletResponseresponse;
publicvoidsetRequest(Maprequest)
{
this.request=request;
}
publicStringexecute()throwsException
{
java.util.Setkeys=request.keySet();
// key 。 key:struts.valueStack
for(Stringkey:keys)
System.out.println(key);
// OgnlValueStack
OgnlValueStackstack=(OgnlValueStack)myRequest.get("struts.valueStack");
// HttpServletResponse
response= (HttpServletResponse)stack.getContext().get(StrutsStatics.HTTP_RESPONSE);
response.getWriter().write(" RequestAware ");
}
}
저희 도 StrutsStatics.HTTP 를 사용 할 수 있 습 니 다.REQUEST、StrutsStatics.PAGE_CONTEXT 는 HttpServletRequest 와 PageContext 대상 을 얻 습 니 다.이런 방법 은 좀 번 거 로 워 서 일반적으로 매우 적 게 사용 되 므 로 독자 들 은 참고 할 수 있다.
【방법 3】ActionContext 클래스 사용
이런 방법 은 비교적 간단 하 다.우 리 는 org.apache.struts 2.Action Context 류 의 get 방법 을 통 해 해당 하 는 대상 을 얻 을 수 있다.코드 는 다음 과 같 습 니 다:
HttpServletResponse response = (HttpServletResponse)
ActionContext.getContext().get(org.apache.struts2.StrutsStatics.HTTP_RESPONSE);
HttpServletRequest request = (HttpServletRequest)
ActionContext.getContext().get(org.apache.struts2.StrutsStatics.HTTP_REQUEST);
【방법 4】ServletAction Context 류 사용
Struts 2 는 우리 에 게 Http ServletResponse 와 다른 대상 을 얻 는 가장 간단 한 방법 을 제공 했다.이것 이 바로 org.apache.struts 2.ServletAction Context 류 입 니 다.저 희 는 ServletAction Context 류 의 getRequest,getResponse 방법 을 직접 사용 하여 HttpServletRequest,HttpServletResponse 대상 을 얻 을 수 있 습 니 다.코드 는 다음 과 같 습 니 다:
HttpServletResponse response = ServletActionContext.getResponse()
response.getWriter().write("hello world");
이 네 가지 방법 으로 볼 때 마지막 하 나 는 가장 간단 하 다.자신의 수요 와 요구 에 따라 어떤 방법 을 사용 하여 이런 대상 을 얻 을 수 있 는 지 선택 할 수 있다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
JPA + QueryDSL 계층형 댓글, 대댓글 구현(2)이번엔 전편에 이어서 계층형 댓글, 대댓글을 다시 리팩토링해볼 예정이다. 이전 게시글에서는 계층형 댓글, 대댓글을 구현은 되었지만 N+1 문제가 있었다. 이번에는 그 N+1 문제를 해결해 볼 것이다. 위의 로직은 이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.