Mybatis映射中的resultType和resultMap能同时用吗?
我的数据库字段和实体类属性名不完全相同,所以要配置resultMap。
我是否可以在resultMap中只指定名字不同的那几个字段,然后在select中共用resultMap和resultType?
Mybatis映射中的resultType和resultMap能同时用吗?
我的数据库字段和实体类属性名不完全相同,所以要配置resultMap。
我是否可以在resultMap中只指定名字不同的那几个字段,然后在select中共用resultMap和resultType?
官方文档上摘下来的
resultType The fully qualified class name or alias for the expected type that will be returned from this statement. Note that in the case of collections, this should be the type that the collection contains, not the type of the collection itself. Use resultType OR resultMap, not both.
resultMap A named reference to an external resultMap. Result maps are the most powerful feature of MyBatis, and with a good understanding of them, many difficult mapping cases can be solved. Use resultMap OR resultType, not both.
3 回答2.6k 阅读✓ 已解决
3 回答4.1k 阅读✓ 已解决
8 回答3.6k 阅读
4 回答2.8k 阅读✓ 已解决
2 回答2.6k 阅读✓ 已解决
3 回答2.5k 阅读✓ 已解决
3 回答1.7k 阅读✓ 已解决
resultMap和resultType不能同时使用。
不过你可以使用继承的方式扩展字段
数据库中没有,实体类中有的属性配置在
cityMap
中。