对于看似正确的映射,MyBatis TooManyResultsException

时间:2016-03-18 19:48:40

标签: java mybatis spring-mybatis

为了解决这个问题,我已经减少了很多代码。

我继续收到此错误,因为我尝试了不同的方法来使这个集合正常工作:

  

嵌套异常是   org.apache.ibatis.exceptions.TooManyResultsException:预期的一个   selectOne()返回的结果(或null),但是找到:2

相关对象如下:

class Recipe {
    String name
    List<RecipeIngredient> ingredients
}
class RecipeIngredient {
    Double measurementAmount
}

我的方法调用接口:

public interface CookbookDao {
    public Recipe getRecipe(@Param("id")int id)
}

我的结果映射器:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd">

<mapper namespace="cookbook.daos.CookbookDao">
    <select id="getRecipe" resultMap="Recipe">
        SELECT
          r.name,
          ri.measurement_amount
        FROM
          recipe r
          INNER JOIN recipe_ingredient ri on ri.recipe_id = r.id
        WHERE
          r.id = #{id}
    </select>

    <resultMap id="Recipe" type="cookbook.domain.Recipe">
        <result property="name" column="r.name" />
        <collection property="ingredients" ofType="cookbook.domain.RecipeIngredient">
            <result property="measurementAmount" column="ri.measurement_amount"/>
        </collection>
    </resultMap>
</mapper>

查询返回以下结果(注意:虽然上面的代码只有&#34; measurement_amount&#34;我已经包含了实际的最终结果集,以帮助说明我想要/需要的原因得到这两行):

 name | measurement_amount | name | abbreviation | name  
------+--------------------+------+--------------+-------
 Rice |                  1 | cup  |              | rice
 Rice |                  2 | cups |              | water

当我拿出集合时,我可以让映射器工作。 我尝试过使用javaType,我尝试在集合中使用复合键,但它仍然没有用。我已经完成了各种想法并且已经看了很多帮助帖,但没有什么突出的。

我使用Spring Boot和UTD版本的mybatis和mybatis-spring

2 个答案:

答案 0 :(得分:2)

事实证明,MyBatis并不了解我与别名表的关联,因此我将查询更改为:

SELECT
  r.name as recipe_name,
  ri.measurement_amount as measurement_amount
FROM
  recipe r
  INNER JOIN recipe_ingredient ri on ri.recipe_id = r.id
WHERE
  r.id = #{id}

并更新映射器以使用列的别名(recipe_name而不是ri.name等),如下所示:

<resultMap id="Recipe" type="cookbook.domain.Recipe">
    <result property="name" column="recipe_name" />
    <collection property="ingredients" ofType="cookbook.domain.RecipeIngredient">
        <result property="measurementAmount" column="measurement_amount"/>
    </collection>
</resultMap>

它有效!

感谢那些评论帮助的人

答案 1 :(得分:-2)

您可以尝试使用List

public interface CookbookDao {
    public List<Recipe> getRecipe(@Param("id")int id);
}