Hi All,
I try some type-conversion example, and do it step by step following this
document:
http://struts.apache.org/2.x/docs/type-conversion.html#TypeConversion-AdvancedTypeConversion
<http://struts.apache.org/2.x/docs/type-conversion.html>Unfortunately, it
show nothing, although, I add some code to "MyBeanAction.java"
public List getBeanList() {
MyBean b = new MyBean();
b.setId(12l);
b.setName("mae");
this.beanList.add(b);
return beanList;
}
Could you share me some example, either "Annotation" manner or
"Convert-class" way.
Thank you very much.
Regards,
Mead