I'm new in JSF
I want to insert a header image in JSF Page
I'm using
img src="WEB-INF/ressources/header.jpg" width="1250" height="181" alt="header"
Note: ressources is the folder where images exists
But header image is not displaying.
I'm new in JSF
I want to insert a header image in JSF Page
I'm using
img src="WEB-INF/ressources/header.jpg" width="1250" height="181" alt="header"
Note: ressources is the folder where images exists
But header image is not displaying.
The header.jpg
needs to be out of WEB-INF folder. Try moving the file in WebContent/resources
folder, and changing the code as :
img src="/resources/header.jpg" width="1250" height="181" alt="header"
Files present in WEB-INF folder cannot be directly accessed from the browser.
If you still want to keep the image in WEB-INF folder, create a servlet with code as described here. This servlet should in response return the image. Like this