我正在开发 flex 应用程序。后端是 spring/Hibernate。该应用程序在我的本地 XP 系统上运行良好。当我尝试在服务器上部署时,我遇到了这个问题。
问题是如何在 apache 中映射 java
当我通过 apache 并在 tomcat 中工作时,我的应用程序运行良好。但在 apache 中却不行。
可以通过在 apache 中映射 java 来解决这个问题。
我不知道如何绘制这个地图。你能帮我吗
我的服务器属性
Linux lumiin.ch 2.6.18-028stab095.1 i686
问候 Karthick
答案1
我认为您的意思是反向代理您的 Tomcat。
这是通过将 ProxyPassReverse 和 ProxyPass 指令添加到 apache conf 来完成的
就像是
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPassReverse /foo/ http://example.com:8080/
ProxyPass /foo/ http://example.com:8080/