I am trying to use display tag for my ArrayList passed from action class.
Action Class
public List getAccessLogList() t
finally I fixed it.
display:table id="accessLogList" name="accessLogList" requestURI="viewLogList.action" pagesize="10" defaultsort="1">
Please use the action name that will be map to the specific action. It works perfectly.
for example:
<action name="viewLogList"
class="test.SessionLogAction">
<result name="success">/WEB-INF/pages/Log_list.jsp</result>
<result name="input">/WEB-INF/pages/Log_list.jsp</result>
</action>