如何配置tomcat使用jruby处理rhtml页面?
如何配置 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可能有更简单的方法,但这里有一些想法:-
使用 JRuby- Rack 与更轻量级的 Rack 兼容 Ruby Web 框架之一结合使用,例如 Sinatra。 Warbler 可能有助于将应用程序打包到
.war
文件中用于简单部署到 Tomcat。如果您在 Tomcat 之前使用 Apache,则可以使用 Ruby CGI 脚本< /a> 插入
.rhtml
文件。如果
.rhtml
文件可以在部署之前进行插值(即它们不依赖于仅在运行时可用的变量),您可以使用像 Webby 然后将它们作为静态文件提供。There might be simpler ways, but here are a few ideas :-
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.If you are using Apache in front of Tomcat, you could use a Ruby CGI script to interpolate the
.rhtml
files.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.