2
I have a question. I am using JSF and Primefaces to make a website for ebooks and need to display the ebooks that are stored in the database. I can register the ebook normally, but when it comes to displaying, the ebook cover image does not appear. I did the same example using a simple HTML document and the image appeared, only the following code does not appear:
<ui:repeat var="livro" value="#{livroBean.listaCompleta}">
<p:fieldset legend="#{livro.titulo}" style="margin-bottom:20px">
<h:panelGrid columns="2" cellpadding="5">
<h:graphicImage value="#{livro.urlCapa}"/>
<h:outputText value="#{livro.sinopse}"/>
</h:panelGrid>
</p:fieldset>
</ui:repeat>
I tested and it didn’t work = but thanks for the help anyway.
– wen-dell