DWR - 不能编组枚举吗?

发布于 2024-11-09 19:52:09 字数 675 浏览 5 评论 0原文

无论我尝试什么,这总是失败。我在这里做错了什么?

package com.example
class ClassToMarshall{
   SomeEnum myEnum
}

enum SomeEnum{
A,
B
}

resources.xml:

   <dwr:configuration>
        <dwr:convert type="bean" class="com.example.**">
            <dwr:exclude method="metaClass"/>
        </dwr:convert>
        <dwr:convert type="enum" class="com.example.SomeEnum">
            <dwr:exclude method="metaClass"/>
        </dwr:convert>
    </dwr:configuration>

但是,当我调用 MyService.myMethod({myEnum: "A"}) 时,我收到 Throwable throwable。这是怎么回事?

No matter what I try, this keeps failing. What am I doing wrong, here?

package com.example
class ClassToMarshall{
   SomeEnum myEnum
}

enum SomeEnum{
A,
B
}

resources.xml:

   <dwr:configuration>
        <dwr:convert type="bean" class="com.example.**">
            <dwr:exclude method="metaClass"/>
        </dwr:convert>
        <dwr:convert type="enum" class="com.example.SomeEnum">
            <dwr:exclude method="metaClass"/>
        </dwr:convert>
    </dwr:configuration>

However, when I call MyService.myMethod({myEnum: "A"}), I'm receiving Throwable throwable. What's going on?

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

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

发布评论

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

评论(1

葬花如无物 2024-11-16 19:52:09

这都是正确的。如果您有其他异常,您将收到通用的 Error error 提示,除非您启用异常编组。

如果将此添加到您的配置中:

<dwr:configuration>
    <dwr:convert class="java.lang.Exception" type="exception"/>
    <dwr:convert class="java.lang.StackTraceElement" type="bean"/>
</dwr:configuration>

您可能会看到与编组无关的错误。

That's all correct. If you have some other exception, you'll get the generic Error error prompt unless you enable marshalling of exceptions.

If you add this to your configuration:

<dwr:configuration>
    <dwr:convert class="java.lang.Exception" type="exception"/>
    <dwr:convert class="java.lang.StackTraceElement" type="bean"/>
</dwr:configuration>

You'll probably see an error that isn't marshalling related.

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