I have a lot of images in some.address/webapp/images/ that are referenced in various JSPs across my application.
When the images are referenced in actions in the default namespace (/) they are retrieved fine with just: <img src="images/x.png" /> but if the action is in another namespace obviously it tries to find the image at http://some.host/webapp/namespace/images/x.png
I need to be able to retrieve the proper path to the image in the JSP.
I tried this:
<img src="<s:url value='images/x.png' namespace='/' />" />
but the namespace appears to be ignored and it tries to access the image at the URL above.
What is the best way to resolve this without explicitly writing the full path in src attribute?