我看到这个问题在Google或Stack上非常奇怪。让我解释。

我的界面方法的注释中有结果图。仅在这种特殊情况下,我才需要动态查询,这就是我决定在xml文件中为接口编写整个映射器的原因。下面,我粘贴整个文件。选择查询应该可以,但是<resultMap>出现了一些困难。

在不同的Web站点上,我一直在寻找关于此结果图的一对一,一对多,多对一关联和构造的良好解释。

我看到有某种可能性将其分为子查询,子结果映射。但是我已经使用myBatis批注完成了此操作,并且我想使用它。
您能指导我,应该如何构造resultMap?我看不到需要构造函数,区分符,但是它仍然在大喊……(这就是为什么我添加了<collection>标记)-IntelliJ强调了整个<resultMap>的说法:"The content of element type "resultMap" must match "(constructor?,id*,result*,association*,collection*,discriminator?)"
我知道这似乎很明显,但是我完全不知道如何正确地做。请帮我。

xml映射器文件:

<?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="pl.net.manager.dao.UsageCounterDAO">
    <select id="getUsageCounterList" resultType="pl.net.manager.domain.UsageCounter"
            resultMap="getUsageCounterListMap">
        SELECT * FROM usage_counter WHERE
        <if test="apiConsumerIdsList != null">
            api_consumer IN
            <foreach item="item" index="index" collection="apiConsumerIdsList"
                     open="(" separator="," close=")">
                #{item}
            </foreach>
            AND
        </if>
        <if test="serviceConsumerIdsList != null">
            service IN
            <foreach item="item" index="index" collection="serviceConsumerIdsList"
                     open="(" separator="," close=")">
                #{item}
            </foreach>
            AND
        </if>
        <if test="dateFrom != null">
            date &gt;= #{dateFrom} AND
        </if>
        <if test="dateTo != null">
            date &lt;= #{dateTo} AND
        </if>
        <if test="status != null">
            status = #{status}
        </if>
    </select>
    <resultMap id="getUsageCounterListMap" type="">

                    ofType="pl.net.manager.domain.UsageCounter">
            <id property="id" column="id"/>
            <result property="date" column="date"/>
            <result property="apiConsumer" column="api_consumer"
                    javaType="pl.net.manager.domain.ApiConsumer"/>
            <association property="apiConsumer" column="api_consumer"
                         resultMap="pl.net.manager.dao.ApiConsumerDAO.getApiConsumer"/>
            <result property="service" column="service" javaType="pl.net.manager.domain.Service"/>
        <association property="service" column="service"
                     resultMap="pl.net.manager.dao.ServiceDAO.getService"/>

            <result property="counterStatus" column="counter_status"/>
            <result property="ratingProcessId" column="rating_process_id"/>
            <result property="value" column="value"/>
            <result property="createdDate" column="created_date"/>
            <result property="modifiedDate" column="modified_date"/>

    </resultMap>
</mapper>

最佳答案

Mapper XML的XSD期望在<resultMap>中:
<association>必须位于所有<result>标签之后,这意味着您需要将<result>标签分组,然后再添加<association>标签。

其次,您不需要resultType中的resultMapgetUsageCounterList。使用您所用的任何一种resultMap
第三,您在WHERE中的getUsageCounterList子句已损坏。如果仅满足第一个条件,那么在这种情况下,您的SELECT将类似于:

SELECT * FROM usage_counter WHERE api_consumer IN (1,2,3) AND

因此,正如我在上一个查询查询答案中提到的那样,您可以使用<where>标记并遵循该答案中提到的语法。

第四,在resultMap getUsageCounterListMap中,您只需要type,它将是您要填充的Java类,因此可以将ofType移到type

对于一对一映射,您可以仅使用<association>标记,或者还有另一种方法,假设您具有如下所示的Java POJO:
public class Country{
    private String name;
    private City capital;
    //getters and setters
}
public class City{
    private String name;
    //getters and setters
}

您可以编写XML映射,如下所示:
<select id="getCountries" resultType="Country">
    SELECT c.name, cy.name "capital.name"
    FROM country c
    JOIN city cy ON cy.name = c.capital
</select>

因此,Mybatis将确保创建City实例,并将capital.name中的值分配给该实例的name属性。

对于一对一或多对多映射,您可以浏览MyBatis结果图的<collection>标记。有关更多信息,请在提供的链接中查看Advacned Result Maps部分。

10-06 08:47