0

我正在实现 AbstractFactory 模式,允许外人创建工厂。我正在从属性文件中读取工厂实现名称,加载工厂类并使用它来构造对象。问题是,当我尝试创建任务对象时,在我的工厂实现中的某个地方出现以下错误:

线程“Thread-1”java.lang.ClassFormatError 中的异常:类文件 com/testsuite/loadperformancetesterusage/tasks/GetUrl 中的代码段长度错误

以下是 GetUrl 构造函数,没什么花哨的!

public GetUrl( String protocol, String port, String hostname, String path, String producerClassName ) {
    super(producerClassName);
    this.protocol = protocol;
    this.hostname = hostname;
    this.port = port;
    this.path = path;
}

关于这里可能发生的事情的任何反馈?交叉张贴在这里

4

1 回答 1

1

我使用的类的版本有些不匹配。现在可以了。

于 2012-10-02T20:00:55.527 回答