Display database blob images in <p:graphicImage> inside <ui:repeat>

北城以北 提交于 2019-12-17 02:22:22

问题


I'm using PrimeFaces 3.2 on JBoss 7.1.1.

I am trying to display an image which is stored in a BLOB in a MySQL database in <ui:repeat>. The image is stored in a byte[] and then converted to a StreamedContent as follows:

InputStream stream = new ByteArrayInputStream(ingredient.getImage());
ingredient.setJsfImage(new DefaultStreamedContent(stream, "image/jpg"));

Then I am trying to display it in a Facelet as follows:

<ui:repeat var="ingredient" value="#{formBean.ingredientResultSet}">
    <p:panel id="resultsPanel" header="#{ingredient.location.shopName}">
        <p:graphicImage value="#{ingredient.jsfImage}" alt="No picture set" />
...

However, when loading the page, I get the following error in JBoss:

SEVERE [org.primefaces.application.PrimeResourceHandler] (http--127.0.0.1-8080-12) Error in streaming dynamic resource.

How is this caused and how can I solve it?


回答1:


You need to realize that the <p:graphicImage> actually renders a <img src> element with just an URL which is then later individually invoked by the webbrowser when it's about to parse the obtained HTML markup and present the results.

So, whatever you do in the getter method of <p:graphicImage> it must be designed that way that it can be invoked on a per-request basis. So, the most sane approach would be to create a <p:graphicImage> with a <f:param> wherein the <p:graphicImage value> points an entirely standalone request or application scoped bean and the <f:param value> points the unique image identifier.

E.g.

<p:graphicImage value="#{images.image}">
    <f:param name="id" value="#{someBean.imageId}" />
</p:graphicImage>

Where the Images backing bean can look like this:

@ManagedBean
@ApplicationScoped
public class Images {

    @EJB
    private ImageService service;

    public StreamedContent getImage() throws IOException {
        FacesContext context = FacesContext.getCurrentInstance();

        if (context.getCurrentPhaseId() == PhaseId.RENDER_RESPONSE) {
            // So, we're rendering the view. Return a stub StreamedContent so that it will generate right URL.
            return new DefaultStreamedContent();
        }
        else {
            // So, browser is requesting the image. Return a real StreamedContent with the image bytes.
            String id = context.getExternalContext().getRequestParameterMap().get("id");
            Image image = service.find(Long.valueOf(id));
            return new DefaultStreamedContent(new ByteArrayInputStream(image.getBytes()));
        }
    }

}

Or, if you're already using OmniFaces 2.0 or newer, then consider using its <o:graphicImage> instead which can be used more intuitively, almost exectly the way as you expected. See also the blog on the subject.

See also:

  • Display dynamic image from database with p:graphicImage and StreamedContent



回答2:


I do not understand why do you need this. You can just create a servlet that will get the image from database with a mapping "/images/yourimage.jpg".

Here is a quick tutorial with a corresponding code in it on how to do this.

JSF - Displaying images from database in JSF




回答3:


Thanks BalusC. I did this thing by defining an integer in backing bean and assigning a diffent value to it while updating the ByteArray for image. This integer serves as unique identifier for image. Then I set this integer as value of <f:param> within <p:graphicImage> on page.

image tag look like

 <p:graphicImage value="#{empBean.image}">
    <f:param name="id" value="#{empBean.imageId}" />
  </p:graphicImage>`

and setting image in backing bean as

 if(user.getPicture()!=null){
        imageId = (int) new Date().getTime();
        BinaryStreamImpl bs = new BinaryStreamImpl(user.getPicture());  
//picture is byte[] property in user class      
        this.image =   new DefaultStreamedContent(bs.getInputStream(), "image/png");
    }

Its now working good.




回答4:


You have to keep in mind what the graphicImage component renders to on the page. It renders to the HTML <img> element. In the browser, the request will be made for the JSF page, then subsequent requests will occur for each of the images on the page as well.

These images are coming from the PrimeFaces resource servlet and not FacesServlet, meaning that scope of the Managed Bean and its properties are probably not applicable.

Try loading the blob into a byte array first then the this will probably start working.

EDIT: See my following answer to this similar question. graphicimage not rendering streamedcontent in Primefaces




回答5:


InputStream is = new ByteArrayInputStream((byte[]) yourBlobData);
myImage = new DefaultStreamedContent(is, "image/png");

in jsf page;

<p:graphicImage value="#{controller.myImage}" style="width:200px;width:500px" />



回答6:


mmm I 99% sure that <p:graphicImage doesnt work with ui:repeat you ll have lot of problems with this (Because I did XD), I recommend to you to create a servlet and serve the images as an inputstream (there are a lot of examples out there).



来源:https://stackoverflow.com/questions/10073905/display-database-blob-images-in-pgraphicimage-inside-uirepeat

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!