Hi,

or create an instance without spring:

var bean = new com.foo.bar.Useful();
bean.someMethod(arg1, arg2);

regards
Thomas

Am 12.08.2011 15:34, schrieb Andre Juffer:
To answer my own question. I created a new entry in the application's Spring configuration file,

<bean id="com.foo.bar.Useful" class="com.foo.bar.Useful" />

In script, I used

var useful = cocoon.getComponent("com.foo.bar.Useful");
useful.someMethod(arg1, arg2);

This does not require any modification to the source code of the class (that is, the private constructor remains private). It is bit cheating, but alas, such is life.

On 08/12/2011 02:53 PM, Andre Juffer wrote:
Hi,

I am dealing with the following. An extremely useful Java class provides
a static method for completing a particular task, like

class Useful {
private Useful() {}

public static void someMethod(String arg1, String arg2)
{
...
}

}

In flow, I do something like

var arg1 = "test1";
var arg2 = "test2";
Packages.com.foo.bar.Useful.someMethod(arg1, arg2);

The error I get is

Java constructor for "com.foo.bar.Useful.someMethod" with arguments
"java.lang.String,java.lang.String" not found.

My question is now. How can I call a static method on a Java class, if
at all, in Flowscript. One solution is to make the constructor of the
class public (certainly not my preference).

Thanks,





---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to