如何在 JRuby 中包含位于 .EAR 文件中的 .rb 文件?
我有一个 Java 应用程序,打包到 .EAR 文件中,其中包含使用脚本容器在 JRuby 中运行的代码。
ruby 代码运行正常,除非它需要打包到同一个 .EAR 文件中的一些其他文件。
puts "x";
require 'my_other_ruby_file.rb';
导致此错误:
LoadError: no such file to load --my_other_ruby_file
有人有什么想法吗?
提前致谢。
I have a java application, packaged into a .EAR file, that have code that runs in JRuby using script containers.
The ruby code runs normal, except when it need to require some other files that are packaged into the same .EAR file.
puts "x";
require 'my_other_ruby_file.rb';
Results in this error:
LoadError: no such file to load --my_other_ruby_file
Does anybody have some idea?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以这种方式加载文件要求它们在应用程序的类路径中可见。因此,根据您的 EAR 布局,您需要确保部署 JRuby 应用程序的部分可以看到 .rb 文件所在的部分。
除此之外,它只是标准的 EAR 类路径行为。
Loading files in that way requires they be visible in the application's classpath. So depending on your EAR layout, you'll need to make sure that the part your JRuby app is deployed in can see the part where the .rb file is located.
Other than that, it's just standard EAR classpath behavior.