Google AppEngine 文档说我可以像这样使用 JDO 持久化可序列化对象
import javax.jdo.annotations.Persistent;
import DownloadableFile;
// ...
@Persistent(serialized = "true")
private DownloadableFile file;
但是如果我将它与属性一起使用
@Persistent(serialized="true")
private Properties initProps;
我明白了
DataNucleus Enhancer(1.1.0 版):类的增强
“ServletRegistration”类中的“initProps”字段已定义为 Map,但未指定键类型!
我可以用额外的注释来解决这个问题吗?