mybatis mapper xml文件配置resultmap时,id行和result行有什么区别?
Posted THISISPAN
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis mapper xml文件配置resultmap时,id行和result行有什么区别?相关的知识,希望对你有一定的参考价值。
mybatis mapper xml文件配置resultmap时,id行和result行有什么区别?
<resultMap id = "CashInvoiceMap" type="com.dfire.soa.invoice.bo.Invoice">
<id column="id" property="id" />
<result column="order_id" property="orderId" />
<result column="customer_register_id" property="customerRegisterId" />
<result column="entity_id" property="entityId" />
<result column="invoice_kind" property="invoiceKind" />
</resultMap>
property:javabean的属性名,propertyjavabean的属性名。
column:数据库的字段名,column:数据库的字段名。
以上是关于mybatis mapper xml文件配置resultmap时,id行和result行有什么区别?的主要内容,如果未能解决你的问题,请参考以下文章
spring 整合mybatis后 若mapper.java与mapper.xml不在同一文件夹,该怎么配置