5

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

どうすればこれを達成できますか?前もって感謝します。

4

1 に答える 1

2

OCMテストクラスを見ると、これをどのように構成するかについての良い例があります 。A.java

@Node(jcrMixinTypes="mix:lockable" )
public class A
{
@Field(path=true) private String path;
@Field private String a1;
@Field private String a2;
@Bean(jcrType="nt:unstructured", jcrOnParentVersion="IGNORE") private B b;

Beanアノテーションは、オブジェクトをプロパティではなく別のノードとして永続化することを示すために使用されます。

これは、BオブジェクトとAオブジェクトAnnotationBeanDescriptorTest.javaを追加するテストコードです。

ObjectContentManager ocm = getObjectContentManager();
// ------------------------------------------------------------------------
// Create a main object (a) with a null attribute (A.b)
// ------------------------------------------------------------------------
A a = new A();
a.setPath("/test");
a.setA1("a1");
ocm.insert(a);
ocm.save();

// ------------------------------------------------------------------------
// Retrieve
// ------------------------------------------------------------------------
a = (A) ocm.getObject("/test");
assertNotNull("Object is null", a);
assertNull("attribute is not null", a.getB());

B b = new B();
b.setB1("b1");
b.setB2("b2");
a.setB(b);

ocm.update(a);
ocm.save();
于 2012-12-08T03:37:16.743 に答える