我在数据存储中存储对象时遇到问题。我有一个我正在尝试存储的对象 MyObject,但是当代码执行时没有任何反应。我去查看数据存储仪表板,但 MyObject 不存在。没有异常被抛出,也没有错误。
这是我的对象
@PersistenceCapable(identityType = IdentityType.APPLICATION)
public class MyObject{
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Key key;
@Persistent
String name;
@Persistent
String beta;
@Persistent
double loc;
public MyObject(String name1){
name = name1;
}
//getters and setters
}
这是存储对象的代码
public static void saveMyObject(MyObject a)throws Exception{
PersistenceManager pm = PMF.get().getPersistenceManager();
try{
pm.makePersistent(a);
}
catch(Exception e){
throw e;
}
finally{
pm.close();
}
}
谁能看到我错过了什么?