1

springframework HibernateTemplate を使用して単一のテーブルをクエリしています。デバッグ設定を使用して、Hibernate が生成しているクエリをキャプチャして Toad で実行し、75 の個別の行を取得しました。ただし、私のアプリケーションでは、75 個の重複レコードのみを含むコレクションを取得します。

マッピングは次のように単純です。

<hibernate-mapping>
<class name="com.p.e.d.s.PmaSummary" <!-- hiding info -->
    table="V_PMA_SUMMARY" schema="ECREDIT">

    <cache usage="read-only" />

    <id column="member_id" name="memberId">
        <generator class="assigned" />
    </id>

    <property name="weekEnding" column="week_ending" />
    <property name="actualInvoice" column="actual_invoice" />
    <property name="ftrAdjustments" column="ftr_adjustments" />
    <property name="edcLseAdjustments" column="edc_lse_adjustments" />
    <property name="blidAdjustments" column="blid_adjustments" />
    <property name="pmaMiscAdjustments" column="pma_misc_adjustments" />
    <property name="pmaEarlyPayments" column="pma_early_payments" />
    <property name="adjInv" column="adj_inv" />
    <property name="adjInvExcEarlyPayment" column="adj_inv_exc_early_payment" />
    <property name="initialPma" column="initial_pma" />
    <property name="threeWeekPma" column="three_week_pma" />
    <property name="pmaOverride" column="pma_override" />
    <property name="pmaOverride_type" column="pma_override_type" />
    <property name="pmaOverride_reason" column="pma_override_reason" />
</class>
</hibernate-mapping>

この生成されたクエリは、Toad で正しく機能します。

select this_.member_id as member1_45_0_,
     this_.week_ending as week2_45_0_,
     this_.actual_invoice as actual3_45_0_,
     this_.ftr_adjustments as ftr4_45_0_,
     this_.edc_lse_adjustments as edc5_45_0_,
     this_.blid_adjustments as blid6_45_0_,
     this_.pma_misc_adjustments as pma7_45_0_,
     this_.pma_early_payments as pma8_45_0_,
     this_.adj_inv as adj9_45_0_,
     this_.adj_inv_exc_early_payment as adj10_45_0_,
     this_.initial_pma as initial11_45_0_,
     this_.three_week_pma as three12_45_0_,
     this_.pma_override as pma13_45_0_,
     this_.pma_override_type as pma14_45_0_,
     this_.pma_override_reason as pma15_45_0_
from ecredit.v_pma_summary this_
where this_.member_id = 10003
order by this_.week_ending desc;
4

2 に答える 2

1

DISTINCTHQL クエリに追加してみませんか?

于 2012-05-31T12:08:43.260 に答える
0

マッピング ファイルの ID 定義が正しくありません。<ìd>単一の列を主キーとして定義します。

select では、1 つの member_id のすべての行を選択し、week_ending で並べ替えます。したがって、同じ member_id に対して異なる week_ending を持つ列が多数存在する可能性があると思います。したがって、主キーにはおそらく member_id と week_ending の 2 つ以上の列があり、おそらく sth. そうしないと。

<composite-id>代わり<id>に sthを使用する必要があります。このような

<composite-id>
    <key-property name="memberId" column="member_id" type="..." /> 
    <key-property name="weekEnding" column="week_ending" type="..." />
    <!--- perhaps more key-properties --> 
</composite-id>
于 2012-05-31T12:26:49.737 に答える