如何在由 Tomcat 和 jruby war 部署提供服务的 Rails 应用程序中运行 rake rake 任务?

发布于 2024-10-04 09:41:58 字数 79 浏览 3 评论 0原文

我有一个rails应用程序部署到tomcat,代码已编译为java类并打包为war文件。我想知道,有没有办法让我像往常一样运行 rake 任务?

I have a rails application deployed to tomcat, the code has been compiled to java classes and packed to a war file. And I'm wondering, is there a way for me to run rake tasks as I always did ?

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

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

发布评论

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

评论(2

感悟人生的甜 2024-10-11 09:41:58

我也想要一种方便的方法来做到这一点,尽管我不确定这是否可能。

从爆炸的(解压的)WAR 中,你可以得到这样的东西:

  java -cp WEB-INF/lib/jruby-core-1.6.4.jar -S rake

I'd like a convenient way of doing this too, although I'm not sure it's possible.

From the exploded (unzipped) WAR, you can get somewhere with this kind of thing:

  java -cp WEB-INF/lib/jruby-core-1.6.4.jar -S rake
昔日梦未散 2024-10-11 09:41:58
java -jar WEB-INF/lib/jruby-core-1.6.4.jar -S rake

这对我有用。可能与之前的答案相同,但我对 java、.war 文件或 jruby 的了解还不够,无法确定。

java -jar WEB-INF/lib/jruby-core-1.6.4.jar -S rake

This worked for me. Possibly the same as the previous answer, but I do not know enough about java, .war files, or jruby, to say in any certainty.

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