我可以在 iBatis 上使用 subMap value = "X" 的 Discriminator 吗?并且子映射值=“!X”?

发布于 2024-12-27 19:11:57 字数 389 浏览 0 评论 0 原文

我有一个地址组件,无论该国家/地区是否是罗马尼亚,我都希望有不同的行为。

我想要这样的东西:

<resultMap class="Address" id="one" resultMap="commonFieldsMap">
    <discriminator column="COUNTRY" javaType="int">
        <subMap value="123" resultMap="romania"/>
        <subMap value="!123" resultMap="foreign"/>
    </discriminator>
</resultMap>

这可能吗?

I have an Address component and I want a different behavior whether the country is Romania or not.

I want something like:

<resultMap class="Address" id="one" resultMap="commonFieldsMap">
    <discriminator column="COUNTRY" javaType="int">
        <subMap value="123" resultMap="romania"/>
        <subMap value="!123" resultMap="foreign"/>
    </discriminator>
</resultMap>

Is this possible ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冧九 2025-01-03 19:11:57

我发现您可以创建一个 typeHandler 并在那里应用一个 if 并返回 01,这些值您输入subMap 值

<discriminator javaType="CountryType" column="COUNTRY" typeHandler="CTHandler">

I found out you can create a typeHandler and apply there an if and you return 0 or 1, values which you put in subMap value.

<discriminator javaType="CountryType" column="COUNTRY" typeHandler="CTHandler">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文