Currently, this app is running from the command line. Any other ideas?
-----Original Message-----
From: Stephen Westbom [mailto:[EMAIL PROTECTED]
Sent: Monday, March 15, 2004 9:01 AM
To: Jakarta Commons Users List
Subject: Re: Error when using commons ReflectionToStringBuilder - Any
ideas?
If this is in a server environment I would do a getClassLoader() on the
class
org.apache.commons.lang.builder.ReflectionToStringBuilder to see if you have
the class from the classloader you think you should have.
--- "White, Joshua A (HTSC, CASD)" <[EMAIL PROTECTED]> wrote:
> Using jdk 1.4.2_03, I have created the following simple class:
>
>
>
> import org.apache.commons.lang.builder.ReflectionToStringBuilder;
>
> public class TestObject {
> private String testAttribute = "Some Value";
>
> public String getTestAttribute() {
> return testAttribute;
> }
>
> public void setTestAttribute(String testAttribute) {
> this.testAttribute = testAttribute;
> }
>
> public String toString() {
> return ReflectionToStringBuilder.toString(this);
>
> }
> }
>
>
> And I run:
>
> TestObject test = new TestObject();
> System.out.println(test.toString());
>
> I receive the following error:
>
> java.lang.NoSuchMethodError:
>
org.apache.commons.lang.builder.ToStringBuilder.getObject()Ljava/lang/Object
> ;
> at
>
org.apache.commons.lang.builder.ReflectionToStringBuilder.toString(Reflectio
> nToStringBuilder.java:515)
> at
>
org.apache.commons.lang.builder.ReflectionToStringBuilder.toString(Reflectio
> nToStringBuilder.java:265)
> at
>
org.apache.commons.lang.builder.ReflectionToStringBuilder.toString(Reflectio
> nToStringBuilder.java:171)
> at donotcall.TestObject.toString(TestObject.java:17)
> at donotcall.TestIt.main(TestIt.java:20)
> Exception in thread "main" Process terminated with exit code 1
>
> I have validated that I do not have another copy of commons-lang-2.0 on my
> classpath. Any suggestions?
>
> Regards,
>
> Joshua
>
>
>
>
> This communication, including attachments, is for the exclusive use of
> addressee and may contain proprietary, confidential or privileged
> information. If you are not the intended recipient, any use, copying,
> disclosure, dissemination or distribution is strictly prohibited. If
> you are not the intended recipient, please notify the sender
> immediately by return email and delete this communication and destroy all
> copies.
>
>
__________________________________
Do you Yahoo!?
Yahoo! Mail - More reliable, more storage, less spam
http://mail.yahoo.com
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]