Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

2 Answers

up vote 18 down vote accepted

Several ways.

  1. If you have full control over the images folder, then just drop the folder with all images, e.g. /images directly in servletcontainer's deploy folder, such as the /webapps folder in case of Tomcat and /domains/domain1/applications in case of Glassfish. No further configuration is necessary.

  2. Add a new <Context> to the servletcontainer with a docBase which points to the absolute disk file system location of the folder with those images. How to do that depends on the container used. In case of for example Tomcat, that'll be the following new entry in /conf/server.xml:

    <Context docBase="/path/to/images" path="/images" />
    

    In case of for example Glassfish, that'll be the following entry in glassfish-web.xml:

    <property name="alternatedocroot_1" value="from=/images/* dir=/path/to" />
    
  3. Create a Servlet which streams the image from disk to response. You can find a kickoff example in this article. Map this on an url-pattern of for example /images/* in web.xml.

Either way, the images will just be available by http://example.com/images/filename.ext and thus referencable in plain HTML as follows

<img src="/images/filename.ext" />

or in JSF as follows

<h:graphicImage value="/images/filename.ext" />

See also:

share|improve this answer
Hi BalusC,Thanks for your quick reply.If i use it in linux,my absolute path of the image is /home/muneeswaran/apache-tomcat-6.0.29/headers/Aboutus/images/ss.jpg.SO can i store context as <Context docBase="/home/muneeswaran/apache-tomcat-6.0.29/headers" path="/images"/> in server.xml? – Muneeswaran Balasubramanian Dec 28 '10 at 5:56
Yes, then you can access it by example.com/images/Aboutus/images/ss.jpg. However, since you seem to have full control over this (you've placed it in the Tomcat installation folder!), why don't you just put it in /webapps folder? Then you don't need to add another context. – BalusC Dec 28 '10 at 6:00
Hi BalusC,we have already used one context named emsd using servlet, Can i use another one context named as images,If i use this by work according to your advice it makes this context as the subcontext of the esmd.So i can't access the image using <h:graphicimage tag/>.How can i do this? – Muneeswaran Balasubramanian Dec 28 '10 at 6:16
Yes, you can. Just access it the same way. – BalusC Dec 28 '10 at 6:17
1  
@Harry: create a Virtual Directory in asadmin or by sun-web.xml. marceble.com/2009/07/virtual-directories-in-glassfish – BalusC Jan 13 '11 at 3:30
show 22 more comments

In order to achieve what you need using <h:graphicImage> or <img> tags, you require to create a Tomcat v7 alias in order to map the external path to your web app's context.

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:

<Context path="/myapp" aliases="/images=/path/to/external/images">
</Context>

Then after restarting your Tomcat server, you can access your images files using <h:graphicImage> or <img> tags as following:

<h:graphicImage value="/images/my-image.png">

or

<img src="/myapp/images/my-image.png">

*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 <p:fileDownload> tag (using commandLink or commandButton tags - HTTP POST method).

In your Facelet:

<h:form>
  <h:commandLink id="downloadLink" value="Download">  
    <p:fileDownload value="#{fileDownloader.getStream(file.path)}" />  
</h:commandLink>
</h:form

In your bean:

@ManagedBean
@ApplicationScope
public class FileDownloader {

    public StreamedContent getStream(String absPath) throws Exception {
        FileInputStream fis = new FileInputStream(absPath);
        BufferedInputStream bis = new BufferedInputStream(fis);
        StreamedContent content = new DefaultStreamedContent(bis);
        return content;
       }
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.