在進行association標籤調用外部mapper文件使用select屬性進行查詢時,出現一個錯誤 Mapped Statements collection does not contain value for ***app
是由於select中的命名空間寫的不對。ci
原:io
<association property="handleUser" column="handleUserID" select="***.CompanyUserDao.findCompanyUserByUser" >
</association>select
改:命名空間
<association property="handleUser" column="handleUserID" select="***.dao.CompanyUserDao.findCompanyUserByUser" >
</association>sso