一個User類有username,password屬性,還有 otherInformation等其餘屬性,username和password映射到一個表,otherInformation等其餘屬性映射到另外一 個表,使用User類時不會感受到是兩個表的的存在,如何配置User.mapping.xml文件進行配置??app
這叫「Table per subclass」: Xml代碼 收藏代碼 <class name="Base" table="表1"> <id name="id" type="long" column="BASE_ID"> <generator class="native"/> </id> <property name="username" column="username"/> <property name="password" column="password"/> ... <joined-subclass name="User" table="表2"> <key column="BASE_ID"/> <property name="otherInformation" column="otherInformation"/> ... </joined-subclass> </class>