如何在 JRuby 中包含位于 .EAR 文件中的 .rb 文件?

发布于 2024-10-08 13:14:31 字数 300 浏览 3 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

苦行僧 2024-10-15 13:14:31

以这种方式加载文件要求它们在应用程序的类路径中可见。因此,根据您的 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.

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