I try to serialize embedded collection using simple. For example :
Map<String, List<MyClass>>
I already added necessary annotations in MyClass, i tried with @ElementMap but it doesn't work:
Exception in thread "main" org.simpleframework.xml.transform.TransformException: Transform of class java.util.ArrayList not supported
If its just
@ElementMap Map<String, MyClass>
it works fine. I don't know ho to deal with embedded collection. I know about @ElementList annotation but don't know how to use it in this case. Any hints?