Hi I am trying to display image which I have stored in my tomcat's webapps folder
i.e(/webapps/test_Proj/images)
in this way.
<h:graphicImage value="/images/#{backBean.obj.image}" />
When I am trying to see it in Mozilla debug mode, it's showing me error as
'failed to load given url'
it is also showing correct path as
/test_proj/images/sample.png
where my images are stored What I am missing here ? How should I overcome with this problem?