私はこれに似たクラスを持っています:
public static class Stats implements Serializable {
private static final long serialVersionUID = 1L;
@Persistent(serialized = "true", defaultFetchGroup="true")
private Map<String, Integer> requests;
public Stats() {
requests = new HashMap<String, Integer>();
}
}
ただし、Appengine は次のように不平を言っています。HashMap is not a supported property type.
では、Appengine で「HashMap」を保存するにはどうすればよいでしょうか? 他の回避策はありますか?