2

我正在查询返回 java.util.HashMap。当查询返回 1 行或更多行时,它返回 hashmap,但是当查询返回 0 行时,我得到空列表,即 [null]。在 IBatis 中并非如此。在 IBatis 中,当返回 0 行时,它返回带有列表的 hashmap,即 [Map(columnName1:null,columnName12:null) 作为返回值。

我可以做任何配置来获得相同的结果吗?

我的Mybatis配置xml

<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD SQL Map Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<settings>
    <setting name="jdbcTypeForNull" value="NULL"/>
</settings>
<typeAliases>
</typeAliases>

<mappers>
    <mapper resource="Mapper.xml" />
    <mapper resource=".." />

</mappers>
</configuration>

我的 Mapper.xml :

  <select id="select__XR_SEGMENT_IDENTIFIER__By__SEGMENT_SEC_ID" parameterType="java.math.BigDecimal" resultType="java.util.HashMap">
    select 
        a1 , b2 , c3
        , d4 , e5
        , f6, g7
    from 
        abc as left join xyz xy on as.a = xyz.a
    where 
        as.a = #{value}
        and as.FLAG_ACTIVE = 'Y'
  </select>

任何帮助表示赞赏。

谢谢,斯旺南德

4

1 回答 1

4

似乎 3.2 版本将对此进行设置。

看看: http ://code.google.com/p/mybatis/issues/detail?id=377

于 2012-12-25T17:44:11.397 回答