ibatis在动态列查询时,出现列名无效错误(使用remapResults属性)
当SQL语句是查询的数据项列是动态的,需要使用remapResults属性,并将其设置为true。
出现错误如下:
com.ibatis.common.jdbc.exception.NestedSQLException:
— The error occurred in com/ictehi/grainplat/sqlMap/sainout.xml.
— The error occurred while applying a result map.
— Check the findSaInOutByPinzhong-AutoResultMap.
— Check the result mapping for the ‘countyid’ property.
— Cause: java.sql.SQLException: 列名无效
如:
<select id="xxxxxxxxxxx" parameterClass="map" resultMap="baseResultMap" remapResults="true">
SELECT $field$
FROM dual
WHERE xxxxx = xx
</select>
如:使用动态标签()等等
像这种,select后面查询数据列是动态的,需要设置remapResults为ture
为啥呢?因为ibatis默认的会缓存rs中的meta信息,如果你第一次查询的列和第二次查询的列不一样的话,那么第二次ibatis还会以第一次查询的列为key从rs里面获取数据,但是第二次列已经变化了,所以第二次取数据的时候,RS里面已经没有了你第一次的那个列了,所以会出错。