问题描述
在iBatis中定义resultMap
时,它提供了一个选项,可将每个属性的javaType
和jdbcType
设置为列映射.
While defining the resultMap
in iBatis, it provides an option to set the javaType
and jdbcType
for each property to column mapping.
例如
<resultMap id="employee" class="com.mycompany.Employee">
<result property="firstName" column="first_name" javaType="?" jdbcType="?"/>
</resultMap>
想知道何时应该定义javaType
和jdbcType
??我已经看到了 just 在不定义这些属性的情况下以及在其他属性中的映射我们必须定义它们.
Wanted to know that when we should be defining the javaType
and jdbcType
? I have seen mapping where it just works without defining these properties and in others we have to define them.
编辑:请参见下面针对上述问题选择的答案.
See the selected answer below for the above question.
此外,我们是否还有一个详尽的列表,应在其中定义javaType
和jdbcType
?
Also, do we have an exhaustive list out of which javaType
and jdbcType
should be defined?
编辑:javaType
应该是众所周知的类型之一,例如java.lang.String
,java.util.Date
和jdbcType
应该来自 java.sql.类型
javaType
should be one of the well-known types e.g. java.lang.String
, java.util.Date
and jdbcType
should be coming out of java.sql.Types
提前谢谢!
推荐答案
对于jdbcType
文档(适用于iBATIS 3)指出:
For jdbcType
the documentation (for iBATIS 3) states:
本文档第33页上列出了受支持的JDBC类型.
On page 33 in this document is a list of supported JDBC types.
对于javaType
属性,它表示:
这篇关于iBATIS-定义"javaType"和"jdbcType"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!