FrontController servlet pattern
How do other people using the FrontController servlet pattern manage external links for things like stylesheets, images, etc? Before we had jsp's and other things directly linked, and we used relative paths. We did this so that our application would be completely independent of it's context so we could move it around for testing, etc. But now with the front controller it's a bit more complicated. Does anyone have a good general solution to how to reference other items in the app? Does everyone just use absolute paths? Any better mechanisms?

