DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • The Self-Healing Directory: Architecting AI-Driven Security for Active Directory
  • Scaling Identity Governance Without Connectors: The LDAP Directory IGA Integration Pattern
  • Why Developers Should Pay Attention to Internal Directory Security
  • Managing AWS Managed Microsoft Active Directory Objects With AWS Lambda Functions

Trending

  • No Observability Tool Is the “Best”
  • GraphQL Isn’t Dead Yet, AI Agents Revived It
  • Supply Chain Resilience Analysis With Apache Spark and Neo4j
  • How RAG Cuts Hallucinations in Generative AI Chatbots

Display Images From a Non-Project Directory in JSF

By 
faisal khan user avatar
faisal khan
·
May. 20, 10 · Interview
Likes (0)
Comment
Save
Tweet
Share
25.0K Views

Join the DZone community and get the full member experience.

Join For Free

When using image related tags in JSF we come across a situation where we need to display an image from the system which is not in the project directory. The images which are in the project directory are easily displayed using the relative path in the "src" or "value" attribute in these tags but displaying images using absolute path is not possible directly in JSF using these tags.

A technique to do this is explained in this article which uses a servlet to respond to the image url which we send.

1)Provide the following entry in web.xml:

<servlet-mapping>
<servlet-name>DynamicImageServlet</servlet-name>
<url-pattern>/images/dynamic/*</url-pattern>
</servlet-mapping>

2)In your xhtml/jsp file call the servlet as shown below:

<h:graphicImage value="/images/dynamic/?file=test.jpg"/>

3)Create the following servlet class

public class DynamicImageServlet extends HttpServlet {

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException

{

try {

// Get image file.

String file = request.getParameter("file");

BufferedInputStream in = new BufferedInputStream(new FileInputStream("Image directory:/" + file));

// Get image contents.
byte[] bytes = new byte[in.available()];

in.read(bytes);
in.close();

// Write image contents to response.
response.getOutputStream().write(bytes);

} catch (IOException e) {

e.printStackTrace();

}

}

}

Explanation of servlet code:
The url (/images/dynamic/?file=test.jpg) specified with the parameter "file" in the xhtml file calls the servlet based on the entry in the web.xml file.

The servlet's doGet() method receives the request and processes it to write the response in the form of the image from the system.

The "Image directory" specified in the servlet class is the system directory from where you want to read the image.

Directory

Opinions expressed by DZone contributors are their own.

Related

  • The Self-Healing Directory: Architecting AI-Driven Security for Active Directory
  • Scaling Identity Governance Without Connectors: The LDAP Directory IGA Integration Pattern
  • Why Developers Should Pay Attention to Internal Directory Security
  • Managing AWS Managed Microsoft Active Directory Objects With AWS Lambda Functions

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook