如何配置tomcat使用jruby处理rhtml页面?

发布于 2024-07-13 06:51:43 字数 135 浏览 7 评论 0原文

如何配置 tomcat 使用 jruby 处理 .rhtml 页面?

我想我应该搞乱 web.xml 文件,但我不知道如何...

(理想情况下,没有rails,只是使用 erb 渲染 rhtml 页面所需的东西...)

How can I configure tomcat to handle .rhtml pages with jruby?

I guess I should mess around with the web.xml file, but I don't know how...

(ideally, without rails, just the necessary stuff to use erb for rendering rhtml pages...)

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

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

发布评论

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

评论(1

风铃鹿 2024-07-20 06:51:43

可能有更简单的方法,但这里有一些想法:-

  1. 使用 JRuby- Rack 与更轻量级的 Rack 兼容 Ruby Web 框架之一结合使用,例如 SinatraWarbler 可能有助于将应用程序打包到 .war 文件中用于简单部署到 Tomcat。

  2. 如果您在 Tomcat 之前使用 Apache,则可以使用 Ruby CGI 脚本< /a> 插入 .rhtml 文件。

  3. 如果 .rhtml 文件可以在部署之前进行插值(即它们不依赖于仅在运行时可用的变量),您可以使用像 Webby 然后将它们作为静态文件提供。

There might be simpler ways, but here are a few ideas :-

  1. Use JRuby-Rack in combination with one of the more lightweight Rack-compatible Ruby web frameworks like Sinatra. Warbler might be useful in wrapping up the application into a .war file for simple deployment to Tomcat.

  2. If you are using Apache in front of Tomcat, you could use a Ruby CGI script to interpolate the .rhtml files.

  3. If the .rhtml files can be interpolated before being deployed (i.e. they do not rely on variables only available at run-time), you could use a framework like Webby and then just serve them as static files.

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