joda new DateTime(int,int,int,int,int,int) 的问题

发布于 2024-12-01 07:59:17 字数 442 浏览 2 评论 0原文

您好,我使用 weblogic 11g 创建战争应用程序,我对 joda time 的方法有问题,

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

该方法抛出 nosuchmethodException 但是当我使用 new DateTime(int, int, int, int, int, int, int);(one int more) 时,它工作得很好 更新:

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

知道问题出在哪里吗? 谢谢

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

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

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

发布评论

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

评论(1

不如归去 2024-12-08 07:59:17

Joda-Time 2.0 中添加了具有 5 个和 6 个整数参数的构造函数。 7 个整数参数的构造函数已经存在很长时间了。

检查您的 Joda-Time 版本。

您可能正在使用较早的版本。

更新 为了回应有关它在 JUnit 中工作但在 WebLogic 中部署时不起作用的评论,我只能支持版本参数。

在 WebLogic 中,检查您的 jar(使用 jar -tf)。查看内部是否有旧的 Joda-Time 版本。也许 WebLogic 默认将它们放在那里。或者,如果您的 jar 中没有,请查看 WebLogic 的容器类库。检查您的类路径或 JRE 扩展目录。尽可能地到处寻找,因为版本参数是有道理的。否则如何会发生 NoSuchMethodError?

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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文