Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有web application, 包含dynamic和static内容。由于我们的客户想要静态内容tomcat和动态内容web logic。有没有可能做这种类型的 configuration,我们怎么能做到这一点?支持连接器或对此的支持是什么?
web application
dynamic
static
tomcat
web logic
configuration
简单:确保静态内容的 URL 可以被静态过滤(例如,将静态图像放在 /image 路径中)并配置网络服务器以从静态目录中提供与该路径匹配的所有内容,并将其余部分转发到应用服务器。
反之亦然:过滤动态内容并静态提供其余内容。