I need to display the image which is reside outside of webapps folder in web application using jsf <h:graphicimage> tag or html's <img> tag. How can I achieve that?
|
|
|
Several ways.
Either way, the images will just be available by http://example.com/images/filename.ext and thus referencable in plain HTML as follows
or in JSF as follows
See also: |
|||||||||||||
|
|
In order to achieve what you need using To do so, you will need to specify your web app's context. The easiest would be to define a META-INF/context.xml file with the following content:
Then after restarting your Tomcat server, you can access your images files using
or
*Note the context path is necessary for the tag but not for the Another possible approach if you don't require the images to be available through HTTP GET method, could be to use Primefaces In your Facelet:
In your bean:
|
||||
|
|