你能在 JBoss 中使用 mod_python 吗?
有人知道是否可以像 Apache HTTPD 一样将 mod_python 放在 JBoss 下? 鉴于 JBoss 内部有 Tomcat,这似乎是一个合理的做法。
如果不是 mod_python,JBoss 下是否有任何 python 支持,可以将解释器保留在内存中?
Anyone know whether it is possible to put mod_python under JBoss like you can Apache HTTPD? Given that JBoss has Tomcat inside it would seem to be a reasonable thing to do.
If not mod_python is there any python support under JBoss which will keep the interpreter in memory?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定是否要在 JBoss 中运行
mod_perl
,但您可能需要考虑以下几种方法:启用 CGI
您可以在 tomcat 中启用 CGI。 请参阅此处举个例子?
使用 jython
Java 6 可以很好地支持在 JVM 内运行其他语言。 其中之一是 python 的 jython 变体?
希望这可以帮助。
编辑:固定链接
I'm not sure about running
mod_perl
in JBoss, but here are a couple of approaches you might want to consider:Enabling CGI
You can enable CGI within tomcat. See here for an example?
Using jython
Java 6 has good support for running other languages within the JVM. One of these is the jython variant of python?
Hope this helps.
EDIT: Fixed link
您是否研究过Jython? 毕竟 Tomcat 是用 Java 构建的。
Have you looked into Jython? Tomcat is built in Java after all.