joda new DateTime(int,int,int,int,int,int) 的问题
您好,我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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?