Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hi I creating war aplication with weblogic 11g and I have problem with joda time's method

new DateTime(int, int, int, int, int, int);

this thrown nosuchmethodException but when I use new DateTime(int, int, int, int, int, int, int);(one int more) it works fine update:

DateTime start = new DateTime(1990, 1, 1, 0, 0, 0); this doesnt works
DateTime start = new DateTime(1990, 1, 1, 0, 0, 0, 0); this works

Any idea where is problem ? thx

share|improve this question
Can you show your stacktrace from the error? – Jonas Aug 25 '11 at 6:32
java.lang.NoSuchMethodError: org.joda.time.DateTime.<init>(IIIIII)V this is all I have – hudi Aug 25 '11 at 6:54
According to your calls, the SIX-argument constructor works but the SEVEN-argument constructor does not. The first part of the question is inconsistent as it mentions a FIVE and SIX-argument constructor. Just FYI; I believe the last part is correct, but you should fix this anyway. – Ray Toal Aug 25 '11 at 7:31
sorry that was mistake – hudi Aug 25 '11 at 7:49

1 Answer

up vote 0 down vote accepted

The constructors with 5 and 6 integer arguments were added in Joda-Time 2.0. The 7 integer argument constructor has been there a long time.

Check your version of Joda-Time.

You may be using an earlier one.

UPDATE In response to the comment about it working in JUnit but not when deployed in WebLogic, I can only stand by the version argument.

In WebLogic, examine your jar (use jar -tf). Look inside for old Joda-Time versions. Perhaps WebLogic put them there by default. Or if not in your jar, look in WebLogic's container class library. Check your classpath, or JRE extensions directory. Look everywhere you can, because, well, the version argument makes sense. How else would a NoSuchMethodError occur?

share|improve this answer
yes I know and I am using version 2.0 <!-- Joda Time --> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <version>2.0</version> </dependency> – hudi Aug 25 '11 at 6:55
Interesting. Can you edit your question to show the exact constructor invocation please? – Ray Toal Aug 25 '11 at 7:00
when I run JUnit test to test this method it works but when I deploy this on weblogic then it thrown exception – hudi Aug 25 '11 at 7:27
Maybe weblogic is using another version in classpath than you?! – flash Aug 25 '11 at 7:33
That's the only explanation I can think of, @flash. WebLogic like all containers allows a classpath for JARs outside the war. But in this case the war should take precedence I would hope, but who knows. I suspect the deployment descriptor for the war was incorrect, but the OP needs to look everywhere just in case. – Ray Toal Aug 25 '11 at 7:39
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.