When my flex app tries to get a persisted entity that has at least one HashMap property I get this error: org.granite.messaging.persistence.ExternalizablePersistentMap cannot be cast to java.util.Map
From what I searched, I believe that I'm missing some externalizer configuration, whitch is...... ?
This is what I have:
Entity:
@Persistent private HashMap<String, String> email;
Gas3 Generated EntityBase: (No Tide)
private var _email:IMap;
granite-config.xml:
<externalizers>
<externalizer type="org.granite.datanucleus.DataNucleusExternalizer">
<include annotated-with="javax.jdo.annotations.PersistenceCapable"/>
</externalizer>
</externalizers>