iBatis中我们在查询多条数据的时候都会返回一个resultMap,那么我们查询的数据就和resultMap对应,那么有没有想过如果两边对不上会怎么样,特别是在resultMap公用的情况下,你在那边加会有什么影响等情况。
经过我的测试发现,如果查询的字段多了,resultMap对应的字段少了,不会报错,只是查询后后台取的的数据这个字段为NULL值
如果resultMap多了,查询数据的时候没有查询出来这个数据,那么此时就会报错,比如说我查询的时候没有查询name这个字段,但是resultMap里面对应的有这个字段,就会报如下错误
org.springframework.jdbc.UncategorizedSQLException: SqlMapClient operation; uncategorized SQLException for SQL []; SQL state [S0022]; error code [0]; --- The error occurred in com/mouse/snow/pojo/sqlmap/User.xml. --- The error occurred while applying a result map. --- Check the Evaluation.get-Evaluation-list. --- Check the result mapping for the 'name' property. --- Cause: java.sql.SQLException: Column 'name' not found.; nested exception is com.ibatis.common.jdbc.exception.NestedSQLException: --- The error occurred in com/mouse/snow/pojo/sqlmap/User.xml. --- The error occurred while applying a result map. --- Check the Evaluation.get-User-list. --- Check the result mapping for the 'name' property. --- Cause: java.sql.SQLException: Column 'name' not found.
这里就说明了,resultMap里面不能多,但是查询的数据是可以多的,只是resultMap里面没有对应,此时pojo里面的数据是空值。