I'm using the Stripes framework. I want to pass non-string Objects to an ActionBean. Is this possible?
I am trying to do:
<s:url var="statementUrl" beanclass="sempedia.action.StatementActionBean" prependContext="false" >
<s:param name="property" value="${row.key}" />
<s:param name="values" value="${row.value}" />
<s:param name="myString" value="Why kick a moo cow" />
</s:url>
<jsp:include page="${statementUrl}"/>
Where row.key resolvs to a custom class I have defined and row.value is an ArrayList of a custom class I have defined