Separation of static and dynamic content in Java EE applications
Posted
by
Dan
on Stack Overflow
See other posts from Stack Overflow
or by Dan
Published on 2009-09-03T13:50:04Z
Indexed on
2012/09/22
15:37 UTC
Read the original article
Hit count: 266
We work with IBM products and we typically use IBM Http Servers (read Apache) as a reverse proxy for our application servers. For performance reasons we serve static content (.gif, .jpg, .css, .html etc.) from our http servers, to ease the burden a bit from the application server.
So far, we have to distribute files to http server and configure it manually (writing custom scripts at best.) The problem is the effort needed to keep everything in synch, especially when you need to update the app.
Does any Java EE product support this “out of the box”? Is there a way to have application server do this automatically, like in cluster configuration for example, where master node is in charge of distributing the application to other nodes and for keeping everything in synch.
© Stack Overflow or respective owner