我正在尝试在类和类之间建立one-to-one
关系。这是我试图做的。但是正如错误所说,有一些问题。Country
PM
xml mapping
xml
Attribute "name" is required and must be specified for element type "one-to-one".
我不明白。我应该为name
属性提什么?我提到了我试图与之建立一对一关系的班级。
<class name="pojo.Country" table="country">
<id name="c_id">
<generator class="increment" />
</id>
<property name="name_c" />
<one-to-one class="pojo.PM" />
</class>
<class name="pojo.PM" table="pm">
<id name="c_id">
<generator class="increment" />
</id>
<property name="name_pm" />
</class>
有两个名为pm
和的表country
。我试图建立的关系是,一个国家可以有一位总理,而总理可以属于一个国家。