Hi, I want to refer to an existing resultMap definied from another mapper.xml.
I have tried with this:
<resultMap id="CustomResult" type="model.custom.CustomResult">
<association property="myProperty"
javaType="model.PropertyType"
resultMap="xml.PropertyMapper.BaseResultMap">
</association>
</resultMap>
but I get this error "Result Maps collection does not contain value xml.PropertyMapper.BaseResultMap".
The BaseResultMap is definied into package xml, PropertyMapper.xml is the name of the file and BaseResultMap is the ResultMap name.
Is there a way to have success referring an external ResultMap id ?