1. 程式人生 > >mybatis一對一與一對多 mapper.xml配置

mybatis一對一與一對多 mapper.xml配置



<!-- 一對一 查詢時帶出妻子資訊 -->
<association column="USER_ID" property="wife" select="com.mapper.WifeMapper.selectByUserId" />

<!-- 一對多 查詢時帶出所有女朋友資訊 -->
<collection column="USER_ID" property="girlList" ofType="com.entity.Girl" select="com.mapper.GirlMapper.selectByUserId">
</collection>