Context라는 개념은 정말 정말 최고로 잘 만들어놓은 개념이 아닌가 싶다.

AppletContext, XletContext, MidletContext, ActionContext 라는 용어..

 

Webwork에서는 ActionContext를 이용하여 Context객체를 얻어오면, 많은 일을 할 수 있다.

그중의 샘플로 파라미터 받기..

 

 

String[] params = (String[])(ActionContext.getContext().getParameters().get("turtle"));
String userName = "";
if (params != null) {

    userName = params[0];

}

 

 

사실 스트러츠1과 비교해 볼때, 파라미터로 받지 않고, Context로 받는 것외엔 다른 점은 없다.

Posted by '김용환'
,