我想使用 ObjectContentManager 在节点下添加一个节点。
我可以使用 ObjectContentManager 添加单个节点,使用
Pojo1 p1 = new Pojo1 ();
p1 .setPath("/p1");
p1 .setName("p_3");
p1 .insert(p1);
ocm.save();
现在在这个节点下我想添加 Pojo2 类的另一个节点。我写了一个代码,但它给了我例外。
Pojo2 p2 = new Pojo2 ();
p2.setPath("/p1/p2");
p2.setName("p_3");
p2.insert(p2);
ocm.save();
但这给了我例外。
org.apache.jackrabbit.ocm.exception.ObjectContentManagerException: Cannot create new node of type nt:pojo1 from mapped class class com.sapient.Pojo1; nested exception is javax.jcr.nodetype.ConstraintViolationException: No child node definition for p2 found in node /p1
我怎样才能做到这一点?提前致谢。