无法创建“某个类”类型的新实例。如果没有公共、无参数的构造函数,则无法实例化类型

发布于 2024-10-20 06:28:59 字数 234 浏览 0 评论 0原文

我有一个带有构造函数和重载方法的类。当我尝试使用 blazeds 导入该类时,我收到一条错误消息

[RPC 故障 failureString="无法创建“某个类”类型的新实例。" 错误代码=“服务器.资源不可用”
failureDetail="如果没有公共、无参数的构造函数,则无法实例化类型。"]

如何使用 blazeds 导入具有重载方法的类

I have a class with constructor and overloaded methods in it. When i try to import that class using blazeds i get an error saying

[RPC Fault faultString="Unable to create a new instance of type 'some class'."
faultCode="Server.ResourceUnavailable"
faultDetail="Types cannot be instantiated without a public, no arguments constructor."]

How to import class having overloaded methods using blazeds

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

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

发布评论

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

评论(1

九歌凝 2024-10-27 06:29:00

您必须提供“无参数”构造函数。请参阅将数据从 ActionScript 转换为 Java

public class SomeClass
{
    // no-args constructor is required for BlazeDS
    public SomeClass() {}

    public SomeClass(int arg) {}
}

public class SomeService
{
    public Connection getConnection()
    {
        // implement to create or get a connection
    }

    public void saveSomeClass(SomeClass sc) throws SQLException
    {
        Connection conn = getConnection();
        Statement stmt = conn.createStatement();
        String sql = "INSERT INTO some_table (...) VALUES (...)";
        stmt.executeUpdate(sql);
        stmt.close();
    }
}

You must provide a "no args"-constructor. See Converting data from ActionScript to Java.

public class SomeClass
{
    // no-args constructor is required for BlazeDS
    public SomeClass() {}

    public SomeClass(int arg) {}
}

public class SomeService
{
    public Connection getConnection()
    {
        // implement to create or get a connection
    }

    public void saveSomeClass(SomeClass sc) throws SQLException
    {
        Connection conn = getConnection();
        Statement stmt = conn.createStatement();
        String sql = "INSERT INTO some_table (...) VALUES (...)";
        stmt.executeUpdate(sql);
        stmt.close();
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文