-2

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.

Apurv
  • 3,723
  • 3
  • 30
  • 51
sweet
  • 1
  • 3

1 Answers1

1

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

Community
  • 1
  • 1
Apurv
  • 3,723
  • 3
  • 30
  • 51