JRuby 神秘的堆栈跟踪
我在我的一个项目中使用 JRuby 1.4.0 完整 jar 。我通过 exec 任务从 ant 执行它:
java -jar jruby1.4.0.jar script.rb script_params
问题是,在某些计算机上我收到此消息:
[exec] Exception in thread "main" :1: no !/ in spec (IOError)
[exec] ...internal jruby stack elided...
[exec] from (unknown).(unknown)(:1)
以前有人遇到过吗?我可以做什么来获得更多信息的堆栈跟踪?
I'm using JRuby 1.4.0 complete jar in one of my projects. I'm executing it from ant via the exec task:
java -jar jruby1.4.0.jar script.rb script_params
The thing is, on some computers I receive this:
[exec] Exception in thread "main" :1: no !/ in spec (IOError)
[exec] ...internal jruby stack elided...
[exec] from (unknown).(unknown)(:1)
Has anyone encountered it before? What can I do to get a more informative stack trace?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 -d 命令行开关运行并查看是否获得更多信息的异常:
Try to run with -d command line switch and see if you get a more informative exception: