<s:debug> 태그로 표시된 value stack에 접근하기
<s:property value="#parameters.artist_id"/><br>
<s:property value="#parameters.artist_name"/><br>
<s:property value="#parameters.nationality"/><br>
<s:property value="#parameters.activity_type"/><br>
<s:property value="#parameters.genre"/><br>
<s:property value="#parameters.activity_period"/><br>
<s:property value="#parameters.imgFileName"/><br>
<s:property value="#com.opensymphony.xwork2.ActionContext.parameters.imgFileName"/>

<s:debug> 내용을 보면 Value Stack Contents 와 Stack Context로 나누어져있는데, Stack Context에는 #key 로 접근할 수 있다고 쓰여 있다.

parameters {activity_type=[Ljava.lang.String;@1f55cae, artist_id=[Ljava.lang.String;@197d09f, artist_name=[Ljava.lang.String;@18e1b, nationality=[Ljava.lang.String;@1f808e6, genre=[Ljava.lang.String;@18b492, activity_period=[Ljava.lang.String;@f1b25e}

파라메터 인터셉터 <interceptor-ref name="params"> 를 설정하면, request의 파라메터 값이 밸류 스택에 저장된다고 한다.
위처럼 들어가는 듯..

근데 input type="file"은 못가져오나?