- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 2 个类保存在谷歌数据存储中。产品类,其中包含产品详细信息的数组列表。现在我很难将数组列表返回给我。类产品是可拆卸的,当我尝试访问对象内的数组列表时,我收到错误:
You have just attempted to access field "productDetailsArray" yet this field was not detached when you detached the object. Either dont access this field, or detach it when detaching the object.
谁能解释一下我如何从谷歌数据存储中分离数组列表?
我使用的两个类是
@PersistenceCapable(identityType = IdentityType.APPLICATION, detachable = "true")
public class Product implements Serializable{
private static final long serialVersionUID = 1L;
private static final Logger log = Logger.getLogger(Product.class.getName());
@PrimaryKey
@Persistent
private String productNaam;
@Persistent
private String categorie;
@Persistent
private ArrayList<ProductDetails> productDetailsArray = new ArrayList<ProductDetails>();
//getters and setter below.
// I use this methode to fix a error resulting the arraylist from being org.datanucleus.sco.backed.ArrayList
public void fix() {
log.info("Fix()");
ArrayList<ProductDetails> a = new ArrayList<ProductDetails>();
Iterator<ProductDetails> itr = productDetailsArray.iterator();
while (itr.hasNext()) {
ProductDetails p = itr.next();
log.info(p.getPlaats());
a.add(p);
}
}
}
类产品详细信息
@PersistenceCapable(identityType = IdentityType.APPLICATION, detachable = "true")
public class ProductDetails implements Serializable{
private static final long serialVersionUID = 1L;
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
@Extension(vendorName="datanucleus", key="gae.encoded-pk", value="true")
private String encodedKey;
@Persistent
private String winkel, plaats;
@Persistent
private double prijs;
//getters and setters here.
}
我使用的方法是在 de DAO 实现中返回数组列表中的对象。
public ArrayList<Product> productList() {
PersistenceManager pm = PmfSingleton.get().getPersistenceManager();
ArrayList<Product> products = new ArrayList<Product>();
try {
products.clear();
pm.currentTransaction().begin();
Extent<Product> ex = pm.getExtent(Product.class, true);
Iterator<Product> itr = ex.iterator();
while(itr.hasNext()) {
Product tempProduct = itr.next();
Product product = pm.detachCopy(tempProduct);
//ArrayList<ProductDetails> pd = new ArrayList<ProductDetails>(product.getProductDetails());
product.fix();
products.add(product);
}
pm.currentTransaction().commit();
ex.closeAll();
} catch (Exception e) {
pm.currentTransaction().rollback();
throw new RuntimeException(e);
} finally {
pm.close();
}
return products;
}
最佳答案
为什么不直接遵循该消息的建议呢?如果要分离该字段,请将其放入提取组中。 DataNucleus 的文档足够清楚地说明了如何做到这一点
关于java - JDO分离对象,然后获取该对象的arraylist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8512471/
我想构建一个应用程序,其中由电子邮件地址标识的用户可以拥有多个应用程序帐户。每个帐户可以有一个或多个用户。我正在尝试将 JDO 存储功能与 Google App Engine Java 结合使用。这是
我在 karaf 2.2.10 之上使用带有 datanucleus-mongodb 3.2.3 和 spring 3.0.7 的 JDO。 在新的 OSGi bundle 安装中,我能够在 mong
这些框架(JPOX JDO 和 Cater JDO)是否遵循与 Hibernate 类似的原则?他们是否使用配置数据以及反射和泛型的组合?主要的架构差异有哪些? 最佳答案 Castor JDO 不是“
尝试遵循 DataNucleus HBase tutorial 时出现异常(“必须指定名为 javax.jdo.PersistenceManagerFactoryClass 的属性”) . 我的 da
我正在尝试增强我的 Google App Engine 项目,但我不断收到此错误。在我不得不在我的机器上重新安装操作系统之前它工作得很好,现在它提示这个: [ERROR] Failed to exec
在过去,我们曾经通过存储过程访问数据库。它们被视为管理数据的“更好”方式。我们将数据保存在数据库中,任何语言/平台都可以通过JDBC/ODBC/etc访问。 然而,近年来,基于运行时反射/元数据的存储
在我的 User 类上,我有一个字符串列表字段: @Persistent private List openIds; 当我创建新用户时,我会这样做: User user = new User(); u
我目前正在 GAE 中进行开发,我必须使用 JDO 进行这样的查询: SELECT table1.column1, table2.column2 FROM table1, table2 WHERE t
我有一个 spring 测试用例,注释如下 @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = {"cl
我的 Oracle 数据库中有两个表 请求和批准。每个审批者都有一个请求。受约束保护的外键。 在我使用 kodo jdo 3.4 的 java 代码中,我对部分或全部批准者调用删除持久性。最后,如果没
我最近开始看到 JDO 错误,例如 Class X has been specified with an object-id class javax.jdo.identity.StringIdenti
上课: class Node implements Serializable { private String name; public String getName { return
我有一个我认为是 JDO 中常见的场景。我有一个简单的持久类,比如说 @PersistenceCapable public class Person { @PrimaryKey @Pe
将对象保存到数据库时,我收到 MySQLIntegrityConstraintViolationException 。我知道这个错误意味着什么,但我无法解决它。 错误:引起:com.mysql.jdb
我正在使用 JDO 来查询我的数据库。实体类看起来有点像这样: class Entity { // other members of the class List stuff; // me
我正在使用 JDO 在 Google App Engine 中创建云端点。我有两个实体。用户实体包含组列表。组实体包含作为用户实体的成员列表。 用户实体: @PersistenceCapable(id
我正在试验 Google App Engine 和持久选项 JDO。我想知道是否可以将 transient 对象映射到持久对象?或者使用 transient 对象来更新持久对象? 在编码示例中,我看到
我正在使用连接到 MySQL 数据库的 Spring 和 JDO。当我保留一个对象时,我希望看到由 makePersistent() 方法返回的已创建对象。它确实返回了一个对象,但是这个对象只有新建对
我有两个不同的数据源,我需要两个不同的 PersistenceManagerFactory。这一点我总是可以通过编写一个 persistence.xml 文件来实现。但我希望以编程方式表示它。尽管第二
我正在尝试将 JDBC webapp 移动到 JDO DataNucleus 2.1.1。 假设我有一些看起来像这样的类: 公共(public)类职位{ 私有(private)整数 id; 私有(pr
我是一名优秀的程序员,十分优秀!