If you used it in your action,
Map<String,Integer> headerMap=new HashMap<String, Integer>();
headerMap.put("INITIATED", 0);
headerMap.put("COMPLETED", 0);
headerMap.put("SUBMITTED", 0);
headerMap.put("APPROVED", 0);
headerMap.put("TRAFICKED", 0);
headerMap.put("REJECTED", 0);
Then use this on jsp,
<s:property value="%{headerMap.INITIATED}" />
<s:property value="%{headerMap.REJECTED}" />
source
share