0

次のような db 構造があるとします。

テーブルオブジェクト

{
    id,
    name
}

テーブルObjectRelation

{
    id,
    parentID, -- points to id in the object table
    childID   -- points to id in the object table
}

私のモデルに入れたいのは次のとおりです。

{
    property name
    property children
    property parent
}

この場合、親プロパティをどのように定義しますか? ルート要素には明らかに親オブジェクトがないことに注意してください。

4

1 に答える 1

0

これはあなたが探していたものですか?

component persistent="true" {
property name="id" ormtype="integer" type="numeric" column="id" fieldtype="id" generator="identity";
property name="name";
property name="children"
    fieldtype="one-to-many"
    cfc="Object"
    linktable="ObjectRelation"
    fkcolumn="parentID"
    singularname="child"
    lazy=true
    inversejoincolumn="childID";
property name="parent"
    fieldtype="many-to-one"
    cfc="Object"
    linktable="ObjectRelation"
    fkcolumn="childID"
    lazy=true
    inversejoincolumn="parentID";
}
于 2010-12-21T16:05:05.510 に答える